首页 > 代码库 > POJ1000A+Bproblem

POJ1000A+Bproblem

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<stdio.h>int main(){    int a,b;    scanf("%d %d",&a,&b);    printf("%d\n",a+b);    return 0;}

 

POJ1000A+Bproblem