fn main() { let a: i32 = 40; let b: Box = Box::new(60); println!("{} + {} = {}", a, b, a + *b); }