class Problem0830: def solve(this): n = int(input()) print(n * 10) if __name__ == "__main__": problem = Problem0830() problem.solve()