x,y = map(int,input().split(' ')) x1,y1 = map(int,input().split(' ')) if x1-x!=0: if x1-x>0: print('r') else: print('l') elif y1-y>0: print('u') else: print('d')
x,y = map(int,input().split(' ')) x1,y1 = map(int,input().split(' ')) if x1-x!=0: if x1-x>0: print('r') else: print('l') elif y1-y>0: print('u') else: print('d')