Rust numerical operations



examples/types/numerical-operations/src/main.rs
fn main() {
    let x = 3;
    let y = 4;
    let q = x + y;
    println!("{}", q);
}