DSA/Lab_2/test.sh

7 lines
59 B
Bash
Raw Normal View History

2024-03-09 17:32:59 +02:00
#!/bin/bash
for i in {1..10}
do
echo $((5**$i));
done