POJ 1000 A+B Problem 题解

来源:互联网 发布:跳跃网络账号注册 编辑:程序博客网 时间:2024/06/14 08:51

题意

计算a+b

思路

输入后运算输出即可

代码

#include <cstdio>int main(){    int a,b;    scanf("%d%d",&a,&b);    printf("%d\n",a+b);    return 0;}
原创粉丝点击