To print the product of two number only if the product exceeds 400
Answers
Answered by
0
Answer:
a, b = list(map(int, input("a, b: ").split()))
if a * b > 400:
print(f"product: {a * b}")
Explanation:
Similar questions