fn main() { let n = 100_usize; println!("{n}"); for i in 1..n { println!("{} {}", i, i+1); } println!("{} {}", n, 1); }