a=1+2**3*4
print(a)
write your answer in comment with explaination

a=1+2**3*4
print(a)
write your answer in comment with explaination

Since we do to the power of first, multiplication second and finally sum it goes like this: 1+ 2 ** 3*4 = 1 +8*4 = 1 +32=33
the output will be 33. 2*3 is like 2*2*2 . The number post * is number of time first number should be repeated with * operation.