<swustoj>?id=15 A+B

链接http://acm.swust.edu.cn/problem/0015/

#include <stdio.h>
int main()
{
    int a,b;
    scanf("%d %d",&a,&b);
    printf("%d\n",a+b);
    return 0;
}
#include <iostream>
using namespace std;
int main()
{
    int a,b;
    cin>>a>>b;
    cout<<a+b<<endl;
    return 0;
}

 

posted @ 2016-07-27 12:22  艹kiss灬不离  阅读(420)  评论(0编辑  收藏  举报