#include <iostream>
using namespace std;

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