落絮飞雁

顺流而下,把梦做完

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;
}

原文标题:POJ1000:A+B Problem|落絮飞雁的个人网站
原文链接:https://www.luoxufeiyan.com/2014/08/15/poj1000ab-problem/
授权协议:创作共用 署名-非商业性使用 2.5 中国大陆
除注明外,本站文章均为原创;转载时请保留上述链接。