Computer Science, asked by Sarfarazahmad2375, 1 year ago

Program to find the sum of squares of natural numbers

Answers

Answered by swatigautam1100
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