fork download
  1. def is_eq_book(childrens, books):
  2. if books < childrens: return 'NO'
  3. if books == childrens: return 'YES'
  4. if books % childrens == 0:
  5. return 'YES'
  6. return 'NO'
  7.  
  8. if __name__ == '__main__':
  9. n = int(input())
  10.  
  11. for i in range(n):
  12. [childrens, books] = list(map(int, input().split()))
  13. print(is_eq_book(childrens, books))
  14.  
Success #stdin #stdout 0.07s 14108KB
stdin
4
2 6
10 12
150 1500
1 1
stdout
YES
NO
YES
YES