If number is less than 10 then prints honor student others normal student

    If number is less than 10 then prints honor student others normal student


    n=int(input())

    if(n<10):

        print("HONOR STUDENT")

    else:

        print("NORMAL STUDENT")

Comments