Discover the answers you need at Westonci.ca, where experts provide clear and concise information on various topics. Explore in-depth answers to your questions from a knowledgeable community of experts across different fields. Discover detailed answers to your questions from a wide network of experts on our comprehensive Q&A 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');
}
}