from random import random while True: x=input().strip() if len(x)>10: break else: x=int(x) r=random() if x>0: if r>0.8: print("R") else: print("F") else: print("R")