from sys import stdin def main(): N = int(input()) print(N * 10) input = lambda: stdin.readline() main()