write a python programs that accepts three inputs x,y,z print true if x*y>z otherwise false
#accept inputs as float
x = float(input("Enter the value of x: "))
y = float(input("Enter the value of y: "))
z = float(input("Enter the value of z: "))
if ((x*y)>z):
print("True")
else:
print("False")
#OR
x = 10
y = 2
z =4
if (x*y>z):
print("True")
else:
print("False")
Comments
Leave a comment