Write a program that reads four large integers (a, b, c, d) and outputs the result of the expression:
(-a) * b + c - d
Input data format: a single line containing four numbers separated by spaces;
Output data format: a single line containing the result.