Submission #1290248

#TimeUsernameProblemLanguageResultExecution timeMemory
1290248nivekscanf 함수 2 (BSC_0_4)C++20
100 / 100
2 ms572 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 timeMemoryGrader output
Fetching results...