#include using namespace std; int main() { string s = "RRRDLLDL"; for (int i = 0; i < 100000; i++) { s += "DRDRRURUULULLDLD"; } int t; cin >> t; cout << s.substr(0, t) << endl; }