Submission #677625

# Submission time Handle Problem Language Result Execution time Memory
677625 2023-01-04T03:43:04 Z pbhat scanf 함수 2 (BSC_0_4) C++14
Compilation error
0 ms 0 KB
n = input()
if len(str(n)) == 1:
    print("00"+n)
elif len(str(n)) == 2:
    print("0"+n)
else:
    print(n)

Compilation message

scanf2.cpp:1:1: error: 'n' does not name a type
    1 | n = input()
      | ^