#include <iostream>
using namespace std;

int main() {
	int a = 1;
    int b = a+2;
    cout<<"a="<<a<<endl;
    cout<<"b="<<b;
	return 0;
}