DSA/Lab_2/test.sh
2024-03-09 17:32:59 +02:00

7 lines
59 B
Bash

#!/bin/bash
for i in {1..10}
do
echo $((5**$i));
done