#include <iostream>
using namespace std;
int a, b;

void wartosci(int x, int y)
{
	x = x + 10;
	y = y - 10;
	cout << "x = " << x << endl;
	cout << "y = " << y << endl;
}

int main()
{
	cout << "Wprowadz pierwsza liczbe: ";
	cin >> a;
	cout << "Wprowadz druga liczbe: ";
	cin >> b;
	wartosci(a, b);
	cout << "a = " << a << endl;
	cout << "b = " << b << endl;
	return 0;
}


