import java.util.Arrays;
import java.util.List;
import java.util.Scanner;
import java.util.stream.Collectors;
/**
* @Title: 判断两个数的大小关系
* @Remark: KiKi想知道从键盘输入的两个数的大小关系,请编程实现。
* 输入描述:
* 题目有多组输入数据,每一行输入两个整数(范围-231~231-1),用空格分隔。
* 输出描述:
* 针对每行输入,输出两个整数及其大小关系,数字和关系运算符之间没有空格,详见输入输出样例。
*
* @Author: ijunfu
* @Version: 1.0.0
* @Date: 2022-03-19
*/
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
while(in.hasNextLine()) {
List<Integer> list = Arrays.stream(in.nextLine().split(" ")).map(x -> Integer.valueOf(x)).collect(Collectors.toList());
int num1 = list.get(0);
int num2 = list.get(1);
if(num1 == num2) {
System.out.printf("%d=%d\n", num1, num2);
} else if(num1 < num2) {
System.out.printf("%d<%d\n", num1, num2);
} else {
System.out.printf("%d>%d\n", num1, num2);
}
}
}
}
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int a;
int b;
char ch;
while (in.hasNextInt()) {
a = in.nextInt();
b = in.nextInt();
if (a > b) {
ch = '>';
} else if (a < b) {
ch = '<';
} else {
ch = '=';
}
System.out.printf("%d%c%d\n",a,ch,b);
}
}
}
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while (sc.hasNext()) {
Integer i = sc.nextInt();
Integer j = sc.nextInt();
System.out.println(i+Main.MaxNumber(i, j)+j);
}
}
public static String MaxNumber(Integer i,Integer j){
if(i-j>0){
return ">";
}
else if(i-j<0){
return "<";
}
else return "=";
}
} import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner input=new Scanner(System.in);
while(input.hasNext()){
int a=input.nextInt();
int b=input.nextInt();
if(a==b) System.out.println(a+"="+b);
else System.out.println(a>b?a+">"+b:a+"<"+b);
}
}
}
import java.util.*;
public class Main
{
public static void main(String [] args)
{
Scanner sc=new Scanner(System.in);
while(sc.hasNextInt())
{
int a=sc.nextInt();
int b=sc.nextInt();
if(a>b)
{
System.out.println(a+">"+b);
}
else if(a<b)
{
System.out.println(a+"<"+b);
}
else
{
System.out.println(a+"="+b);
}
}
}
}