Respuesta :
Answer:
if x > 100:
y = 20
z = 40
Explanation:
This line checks if variable x is greater than 100
if x > 100:
This line assigns 20 to y
y = 20
This line assigns 40 to z
z = 40
The if statement that assigns 20 to the variable y, and assigns 40 to the variable z if the variable x is greater than 100 is as follows:
x = int(input("input an integer number: "))
if x > 100:
y = 20
z = 40
print(y)
print(z)
The first code we ask the user to input an integer number and stored it in the
variable x.
If the user input is greater than x, then y is assigned to 20 and z is assigned to 40.
We print the assigned value of y and z if the user entered an input greater
than 100.
learn more: https://brainly.com/question/19036769?referrer=searchResults