# 41104B006 四則運算 ```python= a=int(input()) b=int(input()) print("+","=",round(a+b,2),"-","=",round(a-b,2),"*","=",round(a*b,2),"/","=",round(a/b,2))