RosettaCodeData/Task/Exponentiation-order/Common-Lisp/exponentiation-order.lisp
2023-07-01 13:44:08 -04:00

2 lines
40 B
Common Lisp

(expt (expt 5 3) 2)
(expt 5 (expt 3 2))