I try to use this code
#include <stdio.h>
int main() {
int x,y,z;
scanf("%d%d", &x, &y);
z = x + y;
printf("%d", z);
return 0;
}
The problem is: Two man have x and y dollar. Take input of x(0 < x < 10000)
and y(0 < y < 10000)
and print the summation of their dollars.