#include using namespace std; int main() { int n; cin>>n; int hx,hy,ex,ey; cin>>hy>>hx>>ey>>ex; vector v; int flag=1; while(1) { if(hy==ey && hx==ex) break; else if(hy==ey && hx>ex) { v.push_back("L"); hx--; } else if(hy==ey && hxey && hx>ex) { //Go Upper Left v.push_back("UL"); hx--; hy-=2; } else if(hy>ey && hxex) { //Go Lower Left v.push_back("LL"); hx--; hy+=2; } else { //Go Upper Right v.push_back("LR"); hx++; hy+=2; } } if(flag==1) { cout<