fork download
  1. class Main
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. int int1 = 1200000000;
  6. int int2 = 1500000000;
  7. boolean res = ( (int1 * int2) >= 0) ? true : false;
  8.  
  9. System.out.println(res);
  10. }
  11.  
  12. }
Success #stdin #stdout 0.07s 380160KB
stdin
Standard input is empty
stdout
false