Add 4.2.3 solution

This commit is contained in:
Joe S 2021-01-29 16:39:38 -05:00
parent ab881dd578
commit ca1e52929c
1 changed files with 5 additions and 0 deletions

5
4/4.2/4.2.3/main.py Normal file
View File

@ -0,0 +1,5 @@
user_num = int(input())
while user_num >= 1:
user_num = user_num / 2 # We operate on the value first, before printing it
print(user_num)