Get the answers you need at Westonci.ca, where our expert community is dedicated to providing you with accurate information. Our Q&A platform offers a seamless experience for finding reliable answers from experts in various disciplines. Experience the convenience of finding accurate answers to your questions from knowledgeable experts on our platform.

Debug the code provided in the starter file so it does the following:
creates an int with the maximum possible value
increases this int by 1
prints the result
creates an int with the minimum possible value
decreases this int by 1
prints the result
----------------------------------
Code:
public class U2_L7_Activity_One
{
public static void main(String[] args)
{
long a = Long.MAX_VALUE();
a + 1;
System.out.println(a);
long b = Long.MIN;
b - 1;
System.out.println('b');
}
}