#include using namespace std; #define rep(i,n) for(long long i=0;i<(long long)n;i++) #define reps(i,n) for(long long i=1;i<=(long long)n;i++) #define loop(i,l,r) for(long long i=l;i<=(long long)r;i++) #define all(v) v.begin(), v.end() #define rall(v) v.rbegin(), v.rend() #define yn(x) cout << (x? "Yes":"No") << endl #define cou(x) cout << x << endl //#pragma GCC target ("avx,avx2")四則演算 #pragma GCC optimize("O3") //#pragma GCC optimize("unroll-loops")ループ //#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")浮動小数点 #include namespace mp = boost::multiprecision; using bint=mp::cpp_int; // #include  やばい少数派(重い) // #include 円周率他 // #include dynamicbitset const long long mod=998244353LL; const long long mods=1000000007LL; const long long yab=2500000000000000000LL; const int kaz=1000000000; const long long aho =-yab; const long double eps=1.0e-14L; const long double pi=acosl(-1.0L); using ll=long long; using st=string; using P=pair; using tup=tuple; using vi=vector; using vc=vector; using vb=vector; using vs=vector; using vp=vector

; using sp=set

; using si=set; using vvi=vector>; using vvc=vector; using vvb=vector; const int dx[4]={0,1,0,-1}; const int dy[4]={1,0,-1,0}; const vector ex = {-1, -1, -1, 0, 0, 1, 1, 1}; const vector ey = {-1, 0, 1, -1, 1, -1, 0, 1}; int mysearch(vi &a,ll x){ int l=-1; int r=a.size()-1; while(r-l>1){ int mid=(l+r)/2; if(x==a[mid])return mid; else if(x void co(bool x,T1 y,T2 z){ if(x)cout << y << endl; else cout << z << endl; } template bool chmax(T &a, T b){ if(a bool chmin(T &a, T b){ if(a>b){ a=b; return true; } return false; } template void print(vector &a){ for(int i=0;i0){ if(y&1)ret=ret*x%mod; x=x*x%mod; y>>=1; } return ret; } int main(){ bint a,b; cin >> a >> b; cout << a+b << endl; }