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.

17 lines
350 B

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