#include<bits/stdc++.h>
using namespace std;
int main() {
int H = 4396, g = 2200;
cout << "4396+2200=" << H + g<<endl;
cout << "4396-2200=" << H - g<<endl;
cout << "43962200=" << Hg<<endl;
cout << "4396/2200=" << H / g<<endl;
cout << "4396%2200=" << H % g<<endl;
return 0;
}