100 #ABC202A. [ABC202A] Three Dice

[ABC202A] Three Dice

Score : 100100 points

Problem Statement

Takahashi has rolled three dice. They are showing numbers aa, bb, and cc on the top faces.

Find the sum of the numbers on the bottom faces.

Here, each of these dice is a standard cubic die, where the sum of the numbers on opposite faces is 77.

Constrains

  • 1a,b,c61 \leq a, b, c \leq 6
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

aa bb cc

Output

Print the sum of the numbers on the bottom faces of the three dice.

1 4 3
13

The numbers on the bottom faces are 66, 33, and 44. We have 6+3+4=136 + 3 + 4 = 13, which should be printed.

5 6 4
6