#include <iostream>
#include <string>

int main()
{
	std::string Input;
	std::cin >> Input;
	Input += ".png";
	std::cout << Input;
}