Unit 2 Task 10 - Solution

Learn to code with step-by-step lessons. A place for students to work through programming fundamentals and build skills.

Solution - Task 10: Sticker sheet total

← Back to task


One possible program:

sheet_count = int(input("N (number of sheets): "))
total = 0

for sheet_number in range(1, sheet_count + 1):
    total += sheet_number

print("Total stickers:", total)