Solution :
#include<stdio.h>
#include<conio.h>
main()
{
int one,two;
scanf("%d%d", &one,&two);
printf("%d\n%d\n%d\n%d\n%d",one+two,one-two,one*two,one/two,one%two);
getch();
}
Program Analysis :
Hope You are enjoying through learning.Keep visiting...
Post a Comment