#include <stdio.h>

int main() {
    int a, b;
    scanf("%d", &a);
    scanf("%d", &b);
    if (a > b) {
        printf("a(%d)값이 b(%d)보다 큽니다\n", a, b);
        printf("---\n");
    } /*else {
        printf("a(%d)값이 b(%d)보다 작거나 같습니다\n", a, b);
        printf("---\n");
    }*/
    
    if (a > b) 
        printf("a(%d)값이 b(%d)보다 큽니다\n", a, b);
       // printf("---\n");
    else
        printf("a(%d)값이 b(%d)보다 작거나 같습니다\n", a, b);
        printf("---\n");

    if (a > b) printf("a(%d)값이 b(%d)보다 큽니다\n", a, b);printf("---\n");
    /*else printf("a(%d)값이 b(%d)보다 작거나 같습니다\n", a, b);printf("---\n");*/

    
    return 0;
}

Embed on website

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