看图,谢谢大佬
这么写
a=int(input()) b=int(input()) c=a+b print(str(a)+" + "+str(b)+" = "+str(c))
a,b=map(int,input().split()) print(f'{a} + {b} = {a+b}')