https://www.acmicpc.net/problem/1330 1330번: 두 수 비교하기 두 정수 A와 B가 주어졌을 때, A와 B를 비교하는 프로그램을 작성하시오. www.acmicpc.net 이 문제는 굉장히 단순한 문제이다. A, B를 입력 받고 if문을 통해서 출력을 다르게 해주면 된다. import java.util.Scanner; public class backjoon_1330_두수비교하기 { 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(">"); } els..