#include <stdio.h>

int main() {
    int a, b, c;
    scanf("%d %d", &a, &b);
    if(a<b){
        c=a;
        a=b;
        b=c;
    }
    printf("입력받은 수 중 큰 수는 %d이고 작은 수는 %d이다.\n", a, b);
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: