using System; class Program { static void Main(string[] args) { var d = decimal.Parse(Console.ReadLine()); Console.WriteLine(d * 10); } }