题目简单,主要目的是初步了解c++,他和C语言有很多相同的地方,但也有一些不同
using namespace std; int main() { int a,b; scanf(“%d%d”,&a,&b); printf(“%d”,a+b); return 0; }