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

版权声明:吸吸 https://blog.csdn.net/walk_dog/article/details/80718602
#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;
}

猜你喜欢

转载自blog.csdn.net/walk_dog/article/details/80718602