import java.util.Random;

public class Main {

    public static void main(String[] args) {
        // demonstrates the relational, equality and conditional operators
        Random random = new Random();
        int x = random.nextInt(100);
        int y = random.nextInt(100);

        System.out.printf(" X = %d, Y = %d\n", x, y);
        System.out.printf(" X == Y ? %s\n", x == y);
        System.out.printf(" X != Y ? %s\n", x != y);
        System.out.printf(" X > Y ? %s\n", x > y);
        System.out.printf(" X <= Y ? %s\n", x <= y);
        System.out.printf(" X >= Y ? %s\n", x >= y);
        System.out.printf(" X < Y ? %s\n", x < y);
        System.out.printf(" X == Y ? booyah : no-dice ? %s\n", x==y? "booyah" : "no-dice");
    }
}