using System; class Program { static void Main() { string s = Console.ReadLine(); s = s.Replace("L", "0"); s = s.Replace("R", "1"); s = "1" + s; int ans = Convert.ToInt32(s, 2); Console.WriteLine(ans); } }