55. write a program to input two integers say x and n and find the sum of the following
و
Series
1. x+x²/2+x³/3+×4/4+×5/5+×6/6++×7/7+…+×n/n
Answers
Answered by
0
x=int(input("Enter a number"))
n=int(input("Enter another number"))
sum=x+n
print("The sum of the two numbers is",sum)
hope it was useful
Similar questions