p100.ans1
======================
8

=================
p100.cpp
======================
#include <bits/stdc++.h>

using namespace std;

template<typename T1, typename T2>
ostream& operator<<(ostream& out, const pair<T1, T2>& x) {
    return out << x.first << ' ' << x.second;
}

template<typename T1, typename T2>
istream& operator>>(istream& in, pair<T1, T2>& x) {
    return in >> x.first >> x.second;
}

template<typename T>
istream& operator>>(istream& in, vector<T>& a) {
    for(auto& x: a) {
        in >> x;
    }
    return in;
};

template<typename T>
ostream& operator<<(ostream& out, const vector<T>& a) {
    for(auto x: a) {
        out << x << ' ';
    }
    return out;
};

int a, b;

void read() { cin >> a >> b; }

void solve() {
    // Read two integers and print their sum.

    cout << a + b << '\n';
}

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int T = 1;
    // cin >> T;
    for(int test = 1; test <= T; test++) {
        read();
        // cout << "Case #" << test << ": ";
        solve();
    }

    return 0;
}

=================
p100.in1
======================
5 3

=================
statement.txt
======================
100. A+B

time limit per test: 0.25 sec.
memory limit per test: 65536 KB


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

5 3
Sample Output

8

=================
