a, b = map(int, input().split()) c, d = map(int, input().split()) e, f = c - a, d - b if f == 1: print('u') elif f == -1: print('d') else: if e == 1: print('r') elif e == -1: print('l')