7 lines
59 B
Bash
7 lines
59 B
Bash
#!/bin/bash
|
|
|
|
for i in {1..10}
|
|
do
|
|
echo $((5**$i));
|
|
done
|