You are viewing a single comment's thread. Return to all comments →
int main() { int a,b; float c,d; scanf("%d %d\n%f %f",&a,&b,&c,&d); printf("%d %d\n%.1f %.1f",a+b ,a-b,c+d,c-d); return 0; }
Seems like cookies are disabled on this browser, please enable them to open this website
Sum and Difference of Two Numbers
You are viewing a single comment's thread. Return to all comments →
include
int main() { int a,b; float c,d; scanf("%d %d\n%f %f",&a,&b,&c,&d); printf("%d %d\n%.1f %.1f",a+b ,a-b,c+d,c-d);
return 0; }