Add two numbers in main



let x = 23;
let y = 19;
let sum = x + y;
println!("{x} + {y} = {sum}");