답안 #677626

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
677626 2023-01-04T03:43:22 Z pbhat scanf 함수 2 (BSC_0_4) Python 3
100 / 100
13 ms 2808 KB
n = input()
if len(str(n)) == 1:
    print("00"+n)
elif len(str(n)) == 2:
    print("0"+n)
else:
    print(n)
# 결과 실행 시간 메모리 Grader output
1 Correct 12 ms 2772 KB Output is correct
2 Correct 13 ms 2716 KB Output is correct
3 Correct 12 ms 2724 KB Output is correct
4 Correct 12 ms 2808 KB Output is correct
5 Correct 12 ms 2772 KB Output is correct