Problem1094--code A + B

1094: code A + B

[Creator : ]
Time Limit : 1 sec  Memory Limit : 128 MB

Description

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;

}

Input

no input

Output

See Scample Output

Sample Output Copy

#include <stdio.h>
int main()
{
    int a,b;
    while(scanf("%d%d",&a,&b) != EOF)
        printf("%d\n",a+b);
    return 0;
}

Source/Category