백준1330: 두 수 비교하기
문제
https://www.acmicpc.net/problem/1330
문제 풀이
1
2
3
4
5
6
7
8
9
10
11
12
13
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(">");
else if(a<b) System.out.println("<");
else if(a==b) System.out.println("==");
}
}
댓글남기기