/* example fragment from assignment sheet. * notice my operation order is different from the example * output. ( see test.5* for more detail ) */ begin y:= 23; x:= 13 + y; print x; end