Advertisement
ALENTL

tp11 answer 3

Sep 14th, 2021
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. M = int(input('The value of M: ',))
  2. N = int(input('The value of N: ',))
  3.  
  4. while N <= M:
  5. if(N % 2 == 0):
  6. print(M)
  7. M = M - 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement