Submission #677625

#TimeUsernameProblemLanguageResultExecution timeMemory
677625pbhatscanf 함수 2 (BSC_0_4)C++14
Compilation error
0 ms0 KiB
n = input()
if len(str(n)) == 1:
    print("00"+n)
elif len(str(n)) == 2:
    print("0"+n)
else:
    print(n)

Compilation message (stderr)

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