티스토리 뷰
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a, b;
a = sc.nextInt();
b = sc.nextInt();
if(a<b)
{
System.out.println("<");
}
else if(a>b)
{
System.out.println(">");
}
else
{
System.out.println("==");
}
}
}
'IT > 백준알고리즘[JAVA]' 카테고리의 다른 글
2884:알람 시계 (0) | 2021.06.07 |
---|---|
14681:사분면 고르기 (0) | 2021.06.07 |
2753:윤년 (0) | 2021.06.07 |
9498번:시험성적 (0) | 2021.06.03 |
2588번:곱셈 (0) | 2021.06.03 |
댓글