728x90
    
    
  1 2 3 4 5 6 7 8 9 10 11 12 13 14  | #include <stdio.h>   int main() {       int a=0, b=0;     scanf("%d %d",&a,&b);     if (a < b)         printf("<");     }else if (a > b){         printf(">");     }else if(a==b){         printf("==");     } }    | cs | 
728x90
    
    
  'Study > BAEKJOON' 카테고리의 다른 글
| [BAEKJOON] 8393번 : 합 (0) | 2020.09.13 | 
|---|---|
| [BAEKJOON] 10950번 : A+B - 3 (0) | 2020.09.13 | 
| [BAEKJOON] 2739번 : 구구단 (0) | 2020.09.13 | 
| [BAEKJOON] 2884번 : 알람 시계 (0) | 2020.09.13 | 
| [BAEKJOON] 9498번 : 시험 성적 (0) | 2020.09.13 |