a = int(input())
b = int(input())
c = a - b
print('{0}-{1}={2}'.format(a, b, c))
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
a = int(input())
b = int(input())
c = a - b
print('{0}-{1}={2}'.format(a, b, c))