write a program to find sum of square of first 100 natural numbers
python
Answers
Answered by
2
Input : N = 4
Output : 30
12 + 22 + 32 + 42
= 1 + 4 + 9 + 16
= 30
Input : N = 5
Output : 55
Similar questions