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