#include <math.h> #include <stdio.h> int main() { int x , y , x1 ,y1; scanf("%d %d %d %d",&x,&y,&x1,&y1); if(pow((x - x1), 2) + pow((y - y1),2 ) == 1) { if(y < y1) printf("u"); else if(y > y1) printf("d"); else if(x < x1) printf("r"); else if(x > x1) printf("l"); } return 0; }