fn main() {
    println!("Hi");
    println!("Anup Kumar Tirkey is a Mech Engr");
    println!("04.01.2026");
    if 7>3{
        println!("today is sunday");
    }
    for i in 1..6{
        println!("{}",i);
    }
    for i in 1..8{
        println!("{}",i);
    }
    for i in 1..15{
        println!("{}",i);
    }

    for i in 1..20{
        println!("{}",i);
    }
    let add = 5+3;
    let subtract = 10 -7;
    let div = 10/6;

    println!("{}",add);
    println!("{}",subtract);
    println!("{}",div);
}

Embed on website

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