Computer Science, asked by GTVIDHAAN, 4 months ago

To print the product of two numbers only if the product exceeds 400
don't spam​

Answers

Answered by jai696
3

\huge\red{\mid{\fbox{\tt{Using\: Python\: 3}}\mid}}

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

if a * b > 400:

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

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions