A B
Problem Description
Read integers A and B from input file and write their sum in output file.
Input
Input file contains A and B (0<A,B<10001).
Output
Write answer in output file.
Sample Input
代码语言:javascript复制5 3
Sample Output
代码语言:javascript复制8
Solution
代码语言:javascript复制#include <bits/stdc .h>
int main() {
std::ios::sync_with_stdio(false);
unsigned short a{};
unsigned short b{};
std::cin >> a >> b;
std::cout << a b << std::endl;
}