fork download
#include <iostream>

int main() {
    for (int i = 1; i <= 100000; i++) {
        std::cout << i << ". I love u most" << std::endl;
    }
    return 0;
}
Success #stdin #stdout 0.02s 25836KB
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;
}