Submit solution

Points: 0.10
Time limit: 0.1s
Memory limit: 64M
Input: stdin
Output: stdout

Authors:
Problem type

Giới thiệu: Đây là đề Training Python

Cho ~4~ giá trị ~x1~, ~x2~, ~x3~, ~x4~ là kết quả của ~4~ phép tính ~a + b~, ~a + c~, ~b + c~, ~a + b + c~

Input

~4~ dòng: lần lượt là các giá trị ~x1~, ~x2~, ~x3~, ~x4~

Output

~1~ dòng: lần lượt ~a~, ~b~, ~c~ cách nhau bởi khoảng trắng

Examples 1

Input

40
40
40
60

Output

20 20 20

Examples 2

Input

3
5
4
6

Output

2 1 3

Comments

Please read the guidelines before commenting.


There are no comments at the moment.