Recent Post

Timus Solution 1000



1000. A+B Problem



Calculate a + b

Input

a and b

Output

a+b

Sample

inputoutput
1 5
6

Notes

Use + operator

Solution

 #include<stdio.h>

    int main(){

    int a,b;

       scanf("%d %d",&a,&b);

       printf("%d\n",a+b);

       return 0;

    }