Introduction
Here is the source code for Main.java
Source
public class Main {
public static void main(String[] args) {
boolean bool1 = true;
boolean bool2 = false;
Boolean b1 = Boolean.valueOf(bool1);
Boolean b2 = Boolean.valueOf(bool2);
System.out.println(b1);
System.out.println(b2);
}
}