nums = [i for i in range(1, 100+1)] square_of_sums = sum(nums)**2 sum_of_squares = sum([i**2 for i in nums]) print(square_of_sums-sum_of_squares)