Advertisement
VergeoPaw

1044

Sep 19th, 2021
907
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. a,b = input().split()
  2. a = int(a)
  3. b = int(b)
  4. if a > b :
  5.     x = a
  6.     y = b
  7. else :
  8.     x = b
  9.     y = a
  10.  
  11. if x%y == 0 :
  12.     print("Sao Multiplos")
  13. else :
  14.     print("Nao sao Multiplos")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement