a=float(input())
b=float(input())
if b==0 and a==0:
print("x=[-inf;inf]")
try:
c=-b/a
except ZeroDivisionError:
print("на ноль делить нельзя")
else:
print(c)
Объяснение:
python 3.6
a=float(input())
b=float(input())
if b==0 and a==0:
print("x=[-inf;inf]")
try:
c=-b/a
except ZeroDivisionError:
print("на ноль делить нельзя")
else:
print(c)
Объяснение:
python 3.6