import java.util.Scanner;
public class Main{
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int x = scanner.nextInt();
        int y = scanner.nextInt();
        int x1 = scanner.nextInt();
        int y1 = scanner.nextInt();
        if(y + 1 == y1 && x == x1){
            System.out.print('u');
        }else if(y - 1 == y1 && x == x1){
            System.out.print('d');
        }else if(x + 1 == x1 && y == y1){
            System.out.print('r');
        }else if(x - 1 == x1 && y == y1){
            System.out.print('l');
        }
    }
}