using System; public class Hello { static void Main() { var n = int.Parse(Console.ReadLine().Trim()); Console.WriteLine(n * 10); } }