Дан программный код вычисления суммы двух чисел a и b, если a и b положительные, и их произведение, если a и b отрицательные.
а=int(input())
b=int(input())
if a>0 and b>=0:
print(a-b)
else
​print(a/b)
Предложите правильный вариант данной программы

Тут 4 ошибки
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.