永远的A+B Problem:写在最前

#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;

int a, b;

int main()
{
    scanf("%d%d", &a, &b);
    printf("%d", a+b);
    return 0;
}
posted @ 2018-06-17 14:47  Stooge  阅读(94)  评论(0编辑  收藏  举报