int main(){
int a,b;
printf("Enter two numbers: \n");
scanf("%d%d\n",&a,&b);
printf("The sum is %d\n",a+b);
printf("The product is %d\n",a*b);
printf("The difference is %d\n",a-b);
printf("The quotient is %d\n",a/b);
printf("The remainder is %d\n",a%b);
return 0;
}