Python
3:
print(float(input('Введите x: '))**33)
4:
x = float(input('Введите x: '))
y = 1
for _ in range(33): y*=x
print(y)
Python
3:
print(float(input('Введите x: '))**33)
4:
x = float(input('Введите x: '))
y = 1
for _ in range(33): y*=x
print(y)