Program 4:2
Write a program to print sum of three given numbers 1221, 2332, 3443.
Answers
Answered by
0
Three numbers form a Pythagorean triple if the sum of squares of two numbers is equal to the square of the third ... Write a program to find the sums of fourth powers of the first N numbers. Sample Input. 2.
Answered by
0
Answer:
a = 1221
b = 2332
c = 3443
print (a+b+c)
Similar questions