P1000 A+B Problem

给新手的一道题。

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

0 条评论

目前还没有评论...