#include #include #include #include #include using namespace std; using namespace atcoder; using ll = long long; using mint = modint998244353; using vi = vector; using vvi = vector; using vvvi = vector; using vll = vector; using vvll = vector; using vvvll = vector; using vmi = vector; using vvmi = vector; using vvvmi = vector; #define all(a) (a).begin(), (a).end() #define rep2(i, m, n) for (int i = (m); i < (n); ++i) #define rep(i, n) rep2(i, 0, n) #define drep2(i, m, n) for (int i = (m)-1; i >= (n); --i) #define drep(i, n) drep2(i, n, 0) int main(){ int t; cin >> t; string u = "RDRL"; string v = "RDRLRDDRULRLULLRUULLRDUD"; string w = u+v; int len = w.length(); if(t <= len){ cout << w.substr(0, t) << endl; }else{ cout << w; t -= len; while(t > v.length()){ cout << v; t -= v.length(); }cout << v.substr(0, t) << endl; } return 0; }