coding study/baekjoon
[c] 1330번. 두 수 비교하기
yeoonii
2022. 12. 23. 17:40
#include <stdio.h>
int main(void){
int a,b;
scanf("%d %d", &a, &b);
if(a>b)
printf(">");
else if(a<b)
printf("<");
else printf("==");
}