num1 = 10
num2 = 5
# also check if num1 * num2 < 50
is_true = num1 + num2 < 50
print(is_true)
# expected output: False
Python
Setting up Python environment...
Output
num1 = 10
num2 = 5
# also check if num1 * num2 < 50
is_true = num1 + num2 < 50
print(is_true)
# expected output: False
Setting up Python environment...