Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- M = int(input('The value of M: ',))
- N = int(input('The value of N: ',))
- while N <= M:
- if(N % 2 == 0):
- print(M)
- M = M - 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement