T = int(input()) temp = "RLRDRLRU" temp2 = "RLRDDUDLLRLUUDUR" if T <= 8: print(temp[:T]) else: T -= 8 print(temp+temp2*(T//len(temp2))+temp2[:T%len(temp2)])