A+B Problem

A+B Problen Solution

题目链接

A+B Problem

题解

输入 \(a\)\(b\) ,输出 \(a+b\) 即可。

代码

#include<cstdio>
int main(void) {
  int a,b;
  scanf("%d %d",&a,&b);
  printf("%d",a+b);
  return 0;
}
posted @ 2021-10-01 22:44  HSZSFZOJBlog  阅读(41)  评论(0)    收藏  举报