# print('Hello sdlfjdsflkgdflkgjsdflgksdfg ', end='[NEXT LINE]')
# print('aslsdjas;ldjaskl')
# print('Hello', 'World', 'Apple', 'is', 'Good', sep=', ')
# print('Hel\'lo')
'''
'': 하고 싶은 말을 쓸 때 씌움
\': '을 출력하거나 저장할 때 사용함
\": 같음
\n: 엔터
\t: TAB
'''
# print('Hello\nWorld')
# print('Hello')
# print('Hello World')
# print('Hello\nWorld')
# print('\'Hello\'')
# print('\"Hello World\"')
# print('"!@#$%^&*()\'')
# print('\"C:\\Download\\\'hello\'.py\"')
# print('print("Hello\\nWorld\")')
'''
정수형
x = int(input()
실수형
문자형
'''
# apple = input()
# print(apple)
# x, y = input().split() # 문자열(단어)
# x = int(x) # 정수형
# y = int(y)
# print(x)
# print(y)
# print(x+y)
a = input()
a = int(a)
print(a)