// variables4.rs // // Execute `rustlings hint variables4` or use the `hint` watch subcommand for a // hint. fn main() { let x: i32 = 256 * 256 * 256; println!("Number {}", x); }