week-4 #5

Merged
Kenwood merged 12 commits from week-4 into master 2021-02-03 16:53:55 -05:00
1 changed files with 9 additions and 0 deletions
Showing only changes of commit 149df344ce - Show all commits

9
4/4.3/4.3.3/main.py Normal file
View File

@ -0,0 +1,9 @@
num_insects = int(input()) # Must be >= 1
result = []
while num_insects <= 100:
result.append(num_insects)
num_insects = num_insects * 2
print(*result, end = ' ')