fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main(void)
  6. {
  7. int n;
  8. cin >> n;
  9.  
  10. while (n--)
  11. cout << "Hello Algospot!" << endl;
  12. }
Success #stdin #stdout 0s 5576KB
stdin
2
stdout
Hello Algospot!
Hello Algospot!