728x90
반응형
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int A = scan.nextInt();
int B = scan.nextInt();
if(A > B) {
System.out.println(">");
}
if(A < B) {
System.out.println("<");
}
if(A==B) {
System.out.println("==");
}
}
}
728x90
반응형
'IT개발자 > 백준_Algorithm' 카테고리의 다른 글
백준 2753번 윤년 JAVA(자바) 문제 풀이 (0) | 2022.04.24 |
---|---|
백준 9498번 시험 성적 JAVA(자바) 문제 풀이 (0) | 2022.04.23 |
백준 2588번 JAVA(자바) 문제 풀이 (0) | 2022.04.21 |
백준 10430번 JAVA(자바) 문제 풀이 (0) | 2022.04.20 |
백준 18108번 JAVA(자바) 문제 풀이 (0) | 2022.04.19 |