#include <complex>
#include <iostream>
using namespace std;
int main() {
// write your code here......
int a,b;
cin >> a >> b;
if(abs(a) <=1000 && abs(b)<=1000){
int c = a + b;
cout << c << endl;
}
return 0;
}

京公网安备 11010502036488号