Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 207 Bytes

README.md

File metadata and controls

13 lines (8 loc) · 207 Bytes

Algorithm with Python

Frame

from sys import stdin


def solution(n):
    # 코드 작성
    print(n)


if __name__ == '__main__':
    solution(stdin.readline().rstrip())