Problem 1000

输入:一行,两个空格隔开的整数A,B

输出:一个数A+B。

#include <iostream>
using namespace std;

int main()
{
    int a,b;
    cin>>a>>b;
    cout<<a+b;
    return 0;
}
#include <stdio.h>
scanf("%d %d",&a,&b);

 

posted @ 2016-01-22 22:03  白天黑夜每日c  阅读(108)  评论(0编辑  收藏  举报