# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1280970 | oji | scanf 함수 2 (BSC_0_4) | C++20 | 0 ms | 0 KiB |
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin >>n;
if(n<10){
cout << "00"n <<endl;
}else{
cout <<"0"n <<endl;
}
}