POJ1000:A+B Problem

Time Limit: 1000MS Memory Limit: 10000K
Total Submissions: 329741 Accepted: 182697

Description

Calculate a+b
Input

Two integer a,b (0Output

Output a+b
Sample Input

1 2
Sample Output

3

#include 

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

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注