Answer:
if 3 + 3 == 6:
print("Hey 3 and 3 is 6")
if 5 + 3 == 8:
print("You are not going to catch me")
if 5 + 6 == 10:
print("****nag*****")
else:
print("You thought like 5 + 6 = 11 ")
if 6 + 6 == 12:
print("Great! This one is correct")
if 5 + 7 == 12:
print("Great, this is correct as well")
if 3 + 3 == 4 and 5 + 5 == 10:
print("Great! Congrats")
Step-by-step explanation:
(happy to help)