use proconio::input; fn main() { input! { a: usize, b: usize, } let ans = if a % b == 0 { "YES" } else { "NO" }; println!("{ans}"); }