//Boolean variable that will result in the value true if the 2 int variables are the same, and false if the 2 int variables are not the same.
public class IsaacDiscov {
public static void main (String[] args) {
boolean b = false;
int x = 1;
int y = 1;
b = x == y;
System.out.println(b);
}
}