Add Them Up - Easy Problems - Solution to Toph.co Online Judge Problem

Add Them Up

Limits: 1s, 512 MB

Read two integer variables, calculate their sum, and print it.

Input

The input will contain two integers A and B (A, B < 20000000).

Output

Print the sum of the two integers.

Samples

InputOutput
4 5
9

Solutions:

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


Post a Comment

0 Comments