#include <stdio.h>
int main()
{
int A, B;
scanf("%d %d", &A, &B);
if (A > B) printf(">");
if (A < B) printf("<");
if (A == B) printf("==");
}
'🧐 Algorithm' 카테고리의 다른 글
[백준 2438번 2439번 2440번 2441번 Java] 별찍기 1~4 (0) | 2021.01.22 |
---|---|
[백준 9498번 C/C언어] 시험 성적 (0) | 2021.01.22 |
[백준 2588번 C/C언어] 곱셈(자리수 계산) (0) | 2021.01.22 |
[백준 10869번 C/C언어] 사칙연산 출력 (0) | 2021.01.22 |
[백준 10430번 C/C언어] 나머지 출력 (0) | 2021.01.22 |