fn main() -> i64 { let start: i64 = 10; let end: i64 = 15; for n in start..end { print_i64(n); } return 0; }