# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
677626 | pbhat | scanf 함수 2 (BSC_0_4) | Cpython 3 | 13 ms | 2808 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
n = input()
if len(str(n)) == 1:
print("00"+n)
elif len(str(n)) == 2:
print("0"+n)
else:
print(n)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |