Ad Code

Responsive Advertisement

Toph | Add Them Up | Beginner

 | 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 (-20000000 < A, B < 20000000).

Output

Print the sum of the two integers.

Input Output
4 5
9
N.B.: It's better if you solve this by your own. Thank you!

  Toph Online Judge Add Them Up Solve  in C :                                          

//Solved by Intesar
#include <stdio.h>

int main() {
    int a,b;
    scanf("%d%d",&a,&b);

    printf("%d",a+b);
    return 0;
}

Post a Comment

0 Comments

Ad Code

Responsive Advertisement