//Haha TTpro
#include <iostream>
using namespace std;
int main()
{
	char *a, *b, *c, *d;
	int x, y;
	cin >> x;
	cin.get();
	cin >> y;
	a = new char[100];
	b= new char[100];
	c = new char[100];
	d = new char[100];
	cin.get();
	cin.getline(a, 100);
	cin.getline(b, 100);
	cin.getline(c, 100);
	cin.getline(d, 100);
	cout << "x = " << x << endl;
	cout << "y = " << y << endl;
	cout << "a = " << a << endl;
	cout << "b = " << b << endl;
	cout << "c = " << c << endl;
	cout << "d = " << d << endl;
	delete[]a;
	delete[]b;
	delete[]c;
	delete[]d;
}