#include<iostream> //#include<> -> 导入 iostream=> 输入 输出 using namespace std; int main(){ int a=1; int b=2; cin>>a; cin>>b; cout<<a+b; return 0; }