a = int(input()) #Уменьшаемое
b = int(input()) #Вычитаемое
n = int(input()) #Прибавляем к уменьшаемому
m = int(input()) #Прибавляем к вычитаемому
c = a - b
if n > m:
print("Было :",c,", стало :",c - (n-m))
elif m > n:
print("Было :",c,", стало :",c - (n - m))