Assuming that the user provides 49 as input, what is the out…

Assuming that the user provides 49 as input, what is the output of the following code snippet? int x = 0; int y = 0; System.out.print(“Please enter y: “); Scanner in = new Scanner(System.in); y = in.nextInt(); if (y > 50); { x = y; } System.out.println(“x: ” + x);