What is this written in postfix notation:

!(!((5-10)*(4-(9/2)) > 60)-(((5*7)/(4/(5+3)))=15))<((4-3)=1)

2 answers

Holy crap!
Is ! the NOT operator? If so, we have

!(!((5-10)*(4-(9/2)) > 60)
has unbalanced parentheses

(((5*7)/(4/(5+3)))=15))
has unbalanced parentheses

In both cases there are not enough ('s

Better go over it and make sure things balance out
That's what I thought...