Input정수를 입력합니다. Output출력 형식은 Sample Output과 같은 형식을 따릅니다. 입력받은 정수의 범위를 출력합니다. 1~100 사이면 in boundary를 출력하고, 그 외의 범위이면 out boundary를 출력합니다. 출력이 끝나면 개행처리 해줍니다. Sample Input 188 Sample Output 1in boundary Sample Input 2254 Sample Output 2out boundary   이게 문제인데#include <stdio.h>int main()
{
    if ( 1<= a,b <=100 ) {
         in boundary = a,b;
    }
    else {
         out boundary = a,b;
    }
    printf("%d", a);
    printf("%d", b);
        
    return 0;
} 잘못된게 뭐임