Computer Science, asked by mohammedismail7, 8 months ago

write a program to input three numbers and print sum of squares of the number
(python)​

Answers

Answered by aneesch13012
0

Explanation:

Python Program for Sum of squares of first n natural numbers

Given a positive integer N. The task is to find 12 + 22 + 32 + ….. + N2.

Examples:

Input : N = 4

Output : 30

12 + 22 + 32 + 42

= 1 + 4 + 9 + 16

= 30

Input : N = 5

Output : 55

Similar questions