Can anyone tell me how to reverse the output on this code?
start = 0
end = int(input())
for num in range(start, end + 1):
if num % 2 == 0:
print(num, end = '''
''')
its supposed to output the even numbers until the input on descending order.