Computer Science, asked by sagarsinha6773, 3 days ago

To print the product of two number only if the product exceeds 400

Answers

Answered by Chenchanijaya
0

Answer:

a, b = list(map(int, input("a, b: ").split()))

if a * b > 400:

print(f"product: {a * b}")

Explanation:

Similar questions