fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int x;
  6. cin >> x;
  7. cout << "1";
  8. while (x > 0) {
  9. cout << "0";
  10. --x;
  11. }
  12. return 0;
  13. }
Success #stdin #stdout 0s 5284KB
stdin
5
stdout
100000