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