#include <iostream>

int f()
{
	int x;
	std::cin >> x;
	return x;
}

int main()
{
	int x = (f(), f(), f());
	std::cout << x;
}
