mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-08 07:48:47 +00:00
13 lines
111 B
Text
13 lines
111 B
Text
|
|
var n, k, res;
|
||
|
|
|
||
|
|
n := 2;
|
||
|
|
k := 10;
|
||
|
|
res := 1;
|
||
|
|
|
||
|
|
while k > 0 do
|
||
|
|
res := res * n;
|
||
|
|
k := k - 1
|
||
|
|
od;
|
||
|
|
|
||
|
|
write (res)
|