def add(num1, num2):
return num1 + num2
result = add(12, 10) * 10 # return value of add() is multiplied
# by 10 and then assigned to result
print(result)
if add(12, 10) == 100: # return value of add() is compared
print("It is True") # with 100 in the if statement
print(add(12, 10)) # return value of add() is printed