Algorithm/CodeUp
1153 : 두 수의 대소 비교
B2SIC
2019. 4. 21. 20:21
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #include <stdio.h> int main() { int a, b; scanf("%d %d", &a, &b); if (a > b) printf("%c", '>'); else if(a < b) printf("%c", '<'); else printf("%c", '='); return 0; } | cs |