I have a Python assignment that is as following: \"Write a complete python program that asks a user to input two integers. The program then outputs Both Even
Both Even
You can still use an if else and check for multiple conditions with the if block
if first_int % 2 == 0 and second_int % 2 == 0: print ("Both even") else: print("Not Both Even")