What to do? I am completely clueless..!
package com.codegym.task.task06.task0620;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
/*
Fixing the mistakes of youth
*/
public class Solution {
public static int max = 100;
public static void main(String[] args) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String maxS = "The max is ";
int a = Integer.parseInt(reader.readLine());
int b = Integer.parseInt(reader.readLine());
max = a > b ? a : b;
System.out.println(maxS + max);
}
}