import java.util.Scanner;
public class MyClass {
public static void main(String args[]) {
{ try (Scanner sc = new Scanner(System.in)) {
while (true) {
System.out.println("");
System.out.println("Enter the numbers to peform operations");
System.out.println("Enter the first number");
int x = sc.nextInt();
/This is where my code stops^. I just need to see the error thats here because I can't see it.