Level 1. Fight!

Problem 01

'''LESSER OF TWO EVENS: Write a function that returns the lesser of two given numbers if
both numbers are even, but returns the greater if one or both numbers are odd

lesser_of_two_evens(2,4) --> 2
lesser_of_two_evens(2,5) --> 5'''