A+B Problem

Time Limit: 1000MS Memory Limit: 10000K
Total Submissions: 483975 Accepted: 273466

Description

Calculate a+b

Input

Two integer a,b (0<=a,b<=10)

Output

Output a+b

Sample Input

1 2

Sample Output

3

#include <iostream>
#include <cstdio>
using namespace std;
int main() {
    int a, b;
    scanf("%d %d", &a, &b);
    printf("%d", a + b);
    return 0;
}