Anton's favourite geometric figures are regular polyhedrons. Note that there are five kinds of regular polyhedrons:
All five kinds of polyhedrons are shown on the picture below:
Anton has a collection of n polyhedrons. One day he decided to know, how many faces his polyhedrons have in total. Help Anton and find this number!
The first line of the input contains a single integer n (1≤n≤200000)− the number of polyhedrons in Anton's collection.
Each of the following n lines of the input contains a string si− the name of the i-th polyhedron in Anton's collection. The string can look like this:
Output one number− the total number of faces in all the polyhedrons in Anton's collection.
4
Icosahedron
Cube
Tetrahedron
Dodecahedron
42
3
Dodecahedron
Octahedron
Octahedron
28
In the first sample Anton has one icosahedron, one cube, one tetrahedron and one dodecahedron. Icosahedron has 20 faces, cube has 6 faces, tetrahedron has 4 faces and dodecahedron has 12 faces. In total, they have 20+6+4+12=42 faces.