#include <iostream>
using namespace std;

int main() {
	int x = 5;
    int y = x+2;
    cout<<"x="<<x<<endl;
    cout<<"y="<<y;
    return 0 ;
} 
 

