using System; class Program { static void Main() { string n = Console.ReadLine(); Console.WriteLine(n == "0" ? "0" : n + "0"); } }