This program reads input from the user to determine if the user's two numbers are BOTH odd. The program computes 2 boolean expressions in order to determine if the equivalent De Morgan expression gives the same result when checking for odd numbers. This expression is given in the code: boolean bothOdd = num1 % 2 != && num2 % 2 != 0; Convert the bothOdd Boolean into its equivalent De Morgan style boolean expression on its own line and call it bothOddDeMorgan. De Morgan's Laws show equivalencies, so you can work Boolean expressions in EITHER direction, not just with distributing the throughout an expression! Your resulting boolean expression for bothoddDemorgan should produce the same result as bothodd The resulting program should still be able to successfully determine if two numbers entered by a user are both odd or not. Save WWG Status: Not Submitted 3.6.6: Odd Numbers Save 9 FILES OddNumribers java 7 public class CircleTester 8 import java.util.Scanner; 10 public class OddNumbers 11. 12 public static void main(String[] args) 13 - 14 //Ask user to enter 2 positive integers 15 Scanner input = new Scanner(System.in); 16 System.out.println("Enter 2 positive integers"); 17 int numi - input.nextInt(); 18 int num2 input.nextInt(); 19 20 1/Determine if both numbers are odd with bothodd boolean 21 // DO NOT remove this line! 22 boolean bothodd numi X 21-0 & nun2 % 2 1 0; 23 24 7/ADD THE NEW LINE HERE 25 26 Print out if both numbers are odd or not both odd 27 sf (bothodd) 28 - 29 system.out.println("Both numbers are odd"); System.out.printin("Both numbers are NOT odd."); 3 34 35 Status: Not Submitted 3.6.6: Odd Numbers Save Submit Continue FILES //Print out if both numbers are odd or not both odd if (bothodd) { System.out.println("Both numbers are odd"); 3 else { System.out.println("Both numbers are NOT odd."); 3 OddNumbers.java 25 26 27 28 29 30 31 32 - 33 34 35 36 37 38 - 39 40 41 42- 43 44 45 46 47 48 49 5a 51 52 //Print out if both numbers are odd or not both odd if (bothoddDeMorgan) { System.out.println("Both numbers are odd with De Morgan's L else { System.out.println("Both numbers are NOT odd with DeMorgan 3 //Check that both Boolean values evaluate to the same value if(bothodd +- bothodd DeMorgan) System.out.println("DeMorgan was right, again!");