Write a program python to solve equation of a single variable to find the value of 'x' for ax+b=c.
Answers
Answered by
1
Explanation:
a=int(input("Enter value for a"))
b=int(input("Enter value for b"))
c=ax+b
print("value of x",c)
Similar questions