using System;
namespace Example
{
class Program
{
static void Main(string[] args)
{
string[] n = Console.ReadLine().Split();
int A=int.Parse(n[0]);
int B=int.Parse(n[1]);
if (A > B){
Console.WriteLine(">");
}
else if (A < B){
Console.WriteLine("<");
}
else if (A == B){
Console.WriteLine("==");
}
}
}
}
'C# > C# (백준)' 카테고리의 다른 글
[C#] 백준 알고리즘 14681번, 사분면 고르기 (0) | 2022.07.19 |
---|---|
[C#] 백준 알고리즘 9498번, 시험 성적 (0) | 2022.07.18 |
[C#] 백준 알고리즘 2753번, 윤년 (0) | 2022.07.18 |
[C#] 백준 알고리즘 2557번, Hello World (0) | 2022.07.18 |
[C#] 백준 알고리즘 1000번, A+B (0) | 2022.07.18 |