#include <iostream>
using namespace std;

int main() {
    cout<<"Hi";
    for(int i=0;i<100;i++){
        cout<<i<<endl;
    }
    for(int j=0;j<100;j++){
        cout<<j*2<<endl;
    }
    for(int k=0;k<100;k++){
        cout<<k*3<<endl;
    }
    cout<<"Anup Kumar is a Mech En"<<endl;
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: