мурад некто
Ученик
(141),
на голосовании
1 день назад
a = int(input()) b = int(input()) f = 3*((a+b)*(a+b)*(a+b))+275(b*b)-127*a-41 print(f)
выдает : Traceback (most recent call last): File "jailed_code", line 3, in <module> f = 3*((a+b)*(a+b)*(a+b))+275(b*b)-127*a-41 TypeError: 'int' object is not callable
b = int(input())
f = 3*((a+b)*(a+b)*(a+b))+275(b*b)-127*a-41
print(f)
выдает : Traceback (most recent call last):
File "jailed_code", line 3, in <module>
f = 3*((a+b)*(a+b)*(a+b))+275(b*b)-127*a-41
TypeError: 'int' object is not callable