using System;
using System.Collections.Generic;
using System.Text;
namespace MultiverseCommunication {
class Program {
static void Main() {
Dictionary digits = new Dictionary();
digits.Add("CHU", 0);
digits.Add("TEL", 1);
digits.Add("OFT", 2);
digits.Add("IVA", 3);
digits.Add("EMY", 4);
digits.Add("VNB", 5);
digits.Add("POQ", 6);
digits.Add("ERI", 7);
digits.Add("CAD", 8);
digits.Add("K-A", 9);
digits.Add("IIA", 10);
digits.Add("YLO", 11);
digits.Add("PLA", 12);
string input = Console.ReadLine();
StringBuilder number = new StringBuilder();
decimal output = 0;
int power = input.Length / 3;
for (int i = 0; i < input.Length; i += 3) {
string digit = string.Format("{0}{1}{2}", input[i], input[i + 1], input[i + 2]);
output += (decimal)(digits[digit] * Math.Pow(13, power - 1));
power--;
}
Console.WriteLine(output);
}
}
}