Computer Science, asked by ananyasingh75, 6 months ago

Input
number and find Sum of squares of digits​

Answers

Answered by yesiamin6
0

Answer:

a=3

b=4

a=a*a

b=b*b

c=a+b

print("sum of squares of a&b=",c)

Explanation:

Source code is in Python

If you want to accept the numbers at run time use input() function

i.e a=int(input())

//Hope it will help you. Do follow for more programs

Similar questions