https://www.acmicpc.net/problem/1330
Python
a, b = map(int, input().split())
if a > b :
print('>')
elif a < b :
print('<')
else :
print('==')
Java
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
String[] s = scan.nextLine().split(" ");
int a = Integer.parseInt(s[0]);
int b = Integer.parseInt(s[1]);
if(a > b)
System.out.println(">");
if(a < b)
System.out.println("<");
if(a == b)
System.out.println("==");
scan.close();
}
}
'알고리즘 > 백준' 카테고리의 다른 글
[Python/Java] 백준 2753번 - 윤년 (0) | 2020.06.08 |
---|---|
[Python/Java] 백준 9498번 - 시험 성적 (0) | 2020.06.08 |
[Python/Java] 백준 2588번 - 곱셈 (0) | 2020.06.08 |
[Python/Java] 백준 10430번 - 나머지 (0) | 2020.06.08 |
[Python/Java] 백준 10869번 - 사칙연산 (0) | 2020.06.08 |
댓글