#include <iostream>
#include <cstdint>

int main()
{
	std::uint8_t i;
	std::cin >> i;
	std::cout << i;
}