I am receiving the correct answer, but the system does not accept it.:(
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 max = "The max is ";
int a = Integer.parseInt(reader.readLine());
int b = Integer.parseInt(reader.readLine());
//max = a > b ? a : b;
if (a > b)
System.out.println(max + a);
if (a < b)
System.out.println(max + b);
}
}