fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // 두 정수 중 큰수를 출력
  5. int a,b;
  6. scanf("%d %d", &a ,&b);
  7. if(a>b){
  8. printf("%d", a);
  9. }else{
  10. printf("%d", b);
  11. }
  12. }
Success #stdin #stdout 0s 4336KB
stdin
20
stdout
32766