N = int(input())
if N % 4 == 0:
    print("R")
elif N % 4 == 1:
    print("L")
elif N % 4 == 2:
    print("S")
else:
    print("C")

3 条评论

  • 1