fn somma(a: i32, b:i32) -> i32 { a + b } fn main() { let x = 4; let y = 5; println!("{} + {} = {}", x, y, somma(x, y)); }