# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
117259 | maho04 | scanf 함수 2 (BSC_0_4) | C++14 | 3 ms | 256 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
using namespace std;
int main(){
int a;
cin>>a;
if(a<10)
{
cout<<("00");
}
else if(a<100)
{
cout<<("0");
}
cout<<a;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |