What will be the output of the following program?
public class MarksFormats {
public static void main(String[] args) {
int marks = 90;
String stringFormat = Integer.toHexString(marks);
int numberFormat = Integer.parseInt(stringFormat);
System.out.println(numberFormat);
}
}