Advertisement
Prof_Carvalho

dicionarios-python

Apr 13th, 2021 (edited)
640
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. A = int(input("A:"))
  2. B = int(input("B:"))
  3.  
  4. contador = 1
  5.  
  6. while contador <= A:
  7.     if A % contador == 0 and contador < B:
  8.         print("Multiplo:", contador)
  9.     contador += 1
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement