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
Math,
2 months ago
English,
2 months ago
Social Sciences,
2 months ago
Math,
4 months ago
Social Sciences,
4 months ago
Biology,
10 months ago
Math,
10 months ago
Biology,
10 months ago