BC47 (a+b-c)*d 的计算问题

思路:

step1:输入abcd;计算打印即可;

代码如下:

a,b,c,d = list(map(int,input().split()))
print((a+b-c)*d)