>>109786332
SAAR, you are not using correctly the beautiful language.
class Main {
static void main() {
{
Integer moomoo = 100;
Integer poopoo = 100;
System.out.println(moomoo == poopoo);
}
{
Integer moomoo = 200;
Integer poopoo = 200;
System.out.println(moomoo == poopoo);
}
}
}