poj 1000 a+b problem

来源:互联网 发布:app直播源码下载 编辑:程序博客网 时间:2024/06/05 05:59

题意:输出两个数的和。

  • Source Code
    #include <cstdio>using namespace std;int a,b;int main(){scanf("%d%d",&a,&b);printf("%d",a+b);return 0;}

原创粉丝点击