A+B

Time limit: 5000ms
Memory limit: 256mb

Description:
Calculate the sum of two integers.

Input:
Two integer a and b.

Output:
You should output only one line which contains an integer that equals to a plus b.

Sample input:
1 2

Sample output:
3

Hint:
The following is an example in C.
#include <stdio.h>

int main() {
  int a, b;
  scanf("%d%d", &a, &b);
  printf("%d", a + b);
}
Submit