7 lines
148 B
Python
7 lines
148 B
Python
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)
|