fork download
  1. #include <iostream>
  2.  
  3. int main() {
  4. for (int i = 1; i <= 100000; i++) {
  5. std::cout << i << ". I love u most" << std::endl;
  6. }
  7. return 0;
  8. }
Success #stdin #stdout 0.02s 25724KB
stdin
45
stdout
#include <iostream>

int main() {
    for (int i = 1; i <= 100000; i++) {
        std::cout << i << ". I love u most" << std::endl;
    }
    return 0;
}