Problem4480--scanf/printf输入输出两个整数(2)

4480: scanf/printf输入输出两个整数(2)

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

使用 scanf / printf 来求解 两个数的和

输入两个整数 a ,b,输出他们的和。

#include <cstdio>
using namespace std;
int main() {
    int a, b;
    scanf ("       ",    ,    );
    printf("       ",    );
    return 0;
}

Sample Input Copy

1 1

Sample Output Copy

2

Source/Category