S = input() ans = 1 for i in S: ans *= 2 if i == 'R': ans += 1 print(ans)