输入类型 核心代码 2.8
Python
# 输入
a = float(input(...))
b = float(input(...))
# 计算
结果1 = a + b
结果2 = a - b
...
# 输出
print(f"...")