POJ 1000 A+B

#include <stdio.h>

int main()
{
    int a,b;
    scanf("%d %d",&a, &b);
    printf("%d
",a+b);
    return 0;
}
原文地址:https://www.cnblogs.com/zhousysu/p/5515913.html