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