[백준]C# 코딩 : 1330번(두 수 비교하기)

728x90

https://www.acmicpc.net/problem/1330

 

1330번: 두 수 비교하기

두 정수 A와 B가 주어졌을 때, A와 B를 비교하는 프로그램을 작성하시오.

www.acmicpc.net


namespace Backjoon
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] a = Console.ReadLine().Split();
            
            if(int.Parse(a[0]) > int.Parse(a[1]))
            {
                Console.WriteLine(">");
            }
            else if(int.Parse(a[0])<int.Parse(a[1]))
            {
                Console.WriteLine("<");
            }
            else
            {
                Console.WriteLine("==");
            }
        }
    }
}
728x90