; 1.1.1 Expressions

; Evaluates to 486
486

; Let's display it
(display 486)
(newline)

; Other ways to express it
(display (+ 137 349))
(newline)

(display (+ (* 3 (+ (* 2 4) (+ 3 5)))(+ (- 10 7) 6))) 