11111

kimseunghoo · February 21, 2026
#include <stdio.h>

int main() {
    int age;
    scanf("%d",&age);
    if(age >=8 && age <= 13){
        printf("초등학생입니다.");
    }

}
Output

Comments

Please sign up or log in to contribute to the discussion.