BZOJ 1000 A+B Problem (I/O)

#include<cstdio> 
int main(){
int a,b;
    scanf("%d%d",&a,&b);
    printf("%d",a+b);
    return 0;
}
原文地址:https://www.cnblogs.com/forever97/p/bzoj1000.html