Submission #318450

#TimeUsernameProblemLanguageResultExecution timeMemory
318450codemaster111scanf 함수 2 (BSC_0_4)C++17
100 / 100
1 ms492 KiB
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if (n<10) { cout<<"00"<<n; } else if(n<100){ cout<<"0"<<n; } else { cout<<100; } }
#Verdict Execution timeMemoryGrader output
Fetching results...