Read integers A and B from input file and write their sum in output file.
Input file contains A and B (0<A,B<10001).
Write answer in output file.
5 3
8
#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;
}