#![allow(non_snake_case, unused_imports)] use proconio::{fastout, input, marker::*}; #[fastout] fn main() { input! { N: usize, K: usize, } if N % 2 == 0 { println!("Bob"); } else { println!("Alice"); } }