Learn to code with step-by-step lessons. A place for students to work through programming fundamentals and build skills.
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)