Flow Control

can you the output of this code?

import java.io.;
import java.util.
;

class Main {
public static void main(String args)
{
char ch = ‘a’;
switch (ch) {
case 97:
System.out.println(“First”);
break;
default:
System.out.println(“Second”);
}
}
}