gifted = 5
total = 0
while gifted <= 105:
total = total + gifted
gifted = gifted + 5
print('Total roses:', total)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
gifted = 5
total = 0
while gifted <= 105:
total = total + gifted
gifted = gifted + 5
print('Total roses:', total)