T = int(input()) S = "DRLRDDRRLUDULLUU" q = T // 16 r = T % 16 ans = S * q + S[:r] print(ans)