To print the product of two numbers only if the product exceeds 400
don't spam
Answers
Answered by
3
a, b = list(map(int, input("a, b: ").split()))
if a * b > 400:
print(f"product: {a * b}")
Similar questions
English,
2 months ago
Psychology,
2 months ago
Computer Science,
2 months ago
Math,
5 months ago
Social Sciences,
5 months ago
Biology,
11 months ago
Math,
11 months ago
Biology,
11 months ago