You can solve this problem as easy as A+B
You just output the following content
#include <stdio.h>
int main()
{
int a,b;
while(scanf("%d%d",&a,&b) != EOF)
printf("%d\n",a+b);
return 0;
}
You can solve this problem as easy as A+B
You just output the following content
#include <stdio.h>
int main()
{
int a,b;
while(scanf("%d%d",&a,&b) != EOF)
printf("%d\n",a+b);
return 0;
}
no input
#include <stdio.h>
int main()
{
int a,b;
while(scanf("%d%d",&a,&b) != EOF)
printf("%d\n",a+b);
return 0;
}