what's wrong in this ?
package com.codegym.task.task04.task0418;
/*
Minimum of two numbers
*/
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
//write your code here
BufferedReader x = new BufferedReader(new InputStreamReader(System.in));
String s = x.readLine();
int a = Integer.parseInt(s);
int b = Integer.parseInt(s);
if(b<a)
System.out.println(b);
else
System.out.println(a);
}
}