Submission #696487

#TimeUsernameProblemLanguageResultExecution timeMemory
696487hkoiscanf 함수 2 (BSC_0_4)C++17
100 / 100
1 ms300 KiB
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; if (n < 10) cout << '0'; if (n < 100) cout << '0'; cout << n << '\n'; }
#Verdict Execution timeMemoryGrader output
Fetching results...