You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
373 B

// #include <bits/stdc++.h>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <iostream>
#include <vector>
#include <map>
#include <queue>
using namespace std;
int main() {
freopen("Test.in", "r", stdin);
freopen("Test.out", "w", stdout);
int a, b;
cin >> a >> b;
cout << a + b << endl;
return 0;
}