#include using namespace std; int main() { int i=1; i+=4; cout << i << endl; i-=2; cout << i << endl; return 0; }