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
For further actions, you may consider blocking this person and/or reporting abuse
Dominique Megnidro -
Safdar Ali -
Mr #1738 -
Mike Young -
Top comments (5)
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.
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
33
a=1+2*3*4
=> 1+(2*3)*4
=>1+(8)*4
=>1+32
=>33
a=33