| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1290248 | nivek | scanf 함수 2 (BSC_0_4) | C++20 | 2 ms | 572 KiB |
#include<bits/stdc++.h>
using namespace std;
string n;
signed main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n;
if(n.size()==1){
cout << "00" << "";
cout << n << "\n";
}
else if(n.size()==2){
cout << "0" << "";
cout << n << "\n";
}
else{
cout << n << "\n";
}
return 0;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
