작성일 :

문제 링크

1330번 - 두 수 비교하기

설명

입력으로 주어지는 두 수를 비교하는 문제입니다.

두 수를 비교하여 문제의 조건에 맞는 기호를 출력합니다.


Code

[ C# ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Solution {
  class Program {
    static void Main(string[] args) {

      var input = Console.ReadLine()!.Split(' ');
      var a = int.Parse(input[0]);
      var b = int.Parse(input[1]);

      if (a > b) Console.WriteLine(">");
      else if (a < b) Console.WriteLine("<");
      else Console.WriteLine("==");

    }
  }
}



[ C++ ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  int a, b; cin >> a >> b;

  if (a > b) cout << ">\n";
  else if (a < b) cout << "<\n";
  else cout << "==\n";

  return 0;
}