728x90
import java.io.*;
import java.util.*;
class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
if(a > b) {
System.out.print(">");
}else if(a < b) {
System.out.print("<");
} else {
System.out.print("==");
}
}
}
728x90
'✍ Baekjoon' 카테고리의 다른 글
[백준/JAVA] (CLASS1) 2475번 검증수 (0) | 2022.06.06 |
---|---|
[백준/JAVA] (CLASS1) 2438번 별 찍기 - 1 (0) | 2022.06.06 |
[백준/JAVA] (CLASS1) 1008번 A/B (0) | 2022.06.06 |
[백준/JAVA] (CLASS1) 1001번 A-B (0) | 2022.06.06 |
[백준/JAVA] (CLASS1) 1000번 A+B (0) | 2022.06.06 |