Exercise: Logical operators - and II

Complete the code to check if both the sum and the product of num1 and num2 are less than 50. Use the Logical Operator and to assess the two conditions.
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