Advertisement
knyazer

Untitled

Apr 21st, 2020
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Main {
  4.  
  5. public static void main(String[] args) {
  6. Scanner in = new Scanner(System.in);
  7.  
  8. int a = in.nextInt();
  9. int b = in.nextInt();
  10.  
  11. if (a > b) System.out.print(">");
  12. if (a < b) System.out.print("<");
  13. if (a == b) System.out.print("=");
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement