本人代码如下:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
if(a <= b){
System.out.println("YES");
}else{
System.out.println("NO");
}
}
}
请问各位大佬,我的代码哪里有问题,请教一下好吗