23.py 1 2 3 4 5 6 7limit = int(input("Enter A Number : ")) total = 0 for number in range(1, limit + 1): total += number print(f"Sum : {total}")