let n = readLine()!.split(separator: " ").map{Int($0)!} var s = "NO" for i in 1...n[0]/n[1]{ if n[0] % (i * n[1]) == 0{ s = "YES" break } } print(s)