-- 653 + 11 + 87x | Reference
print('Solve for x in the following equation : 653 + 11 + 87x ')
print()
a = 653
b = 11
x = 87
c = '87x'
Add = (a + b)
Ans1 = (-1 * Add)
AnsRL = (x / Ans1)
-- work
print(a, '+', b, '+', c, '=', '0')
print('', Add, '+', c, '=', '0')
print('-', Add, '', '', '-', Add)
print('---------------------------------------------------')
print('', '', c, '=', Ans1)
print('', '', '----', '', '----')
print('', '', x, '', x)
print('')
print('', 'x', '=', AnsRL)
To embed this project on your website, copy the following code and paste it into your website's HTML: