A = input() b = a * 4 print(b)Сос
try:
a = int(input("На сколько надо умножить"))
except:
a = 0
if 0 != a:
b = a * 4
print(b)
else:
print("Ошибка!")