4 lines
123 B
Text
4 lines
123 B
Text
OpenConsole()
|
|
PrintN("(5^3)^2 = " + Str(Pow(Pow(5, 3), 2)))
|
|
PrintN("5^(3^2) = " + Str(Pow(5, (Pow(3, 2)))))
|
|
CloseConsole()
|