#include <iostream>
using namespace std;
#include<cmath>

int main() {

    cout<<"Hi"<<endl;

    for(int i=0;i<50;i++){
        cout<<i<<endl;
    }
    cout<<sin(30)<<endl;
    cout<<cos(30)<<endl;
    cout<<tan(30)<<endl;
    cout<<sinh(30)<<endl;
    cout<<cosh(30)<<endl;
    cout<<tanh(30)<<endl;
    cout<<log10(2)<<endl;
    cout<<exp2(3)<<endl;
    cout<<exp2(9)<<endl;
    cout<<exp2(5)<<endl;
    for(int j=0; j<100;j++){
        cout<<j<<endl;
    }
    cout<<"08 March"<<endl;
    cout<<"Anup Kumar Tirkey is a Mechan Eng"<<endl;
    for (int k=0 ; k<200; k++){
        cout<<k<<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: