What is the output of the given program?
public class HelloWorld {
public static void main(String[] args) {
int x = 24;
int y = 42;
System.out.println((~x) | (~y));
}
}
Reveal answer
Fill a bubble to check yourself