Program to find the sum of squares of natural numbers
Answers
Answered by
0
Explanation:
program is done on python
a=int(input(""))
it asks the user to input an integer(int) value
pow() function is used to get the square of natural number
power(3,2) is treated as (3)² in maths
print fuction is used to print the result
Attachments:
Similar questions