Special eleven

 Special eleven

    ->It is multiple of 11

    ->if it is one more than multiple of 11


    n=int(input())

    if((n%11==0) or (n%11==1)):

        print("Special Eleven")

    else:

        print("Normal Number")

Comments