You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
int a, b, addition, multiple, division, substraction;
printf("Please enter First and Second Value :");
scanf("%d%d", &a, &b);
addition = a + b;
multiple = a * b;
division = a / b;
substraction = a - b;
printf(" The Addition of the Number is : %d \n The Multiple of the Number is : %d \n The division is :%d \n The Substraction is : %d \n", addition, multiple, division, substraction);