main()1 fn main() {
2     let mut a = 100;
3     a += 10;
4     let b = a + 7;
5     println!("{b}");
6 }
7