#include #include int main(int argc, char ** argv) { int a=9; int b=5; int c; c = a/b; printf("The result is %d \n", c); system("pause"); }