I am a newbie in Python so I am trying to do some basic code. Below you can see a simple code, but it gives me subsequent error: File "", line 9 print('Not your number.') ^ IndentationError: expected an indented block
c = 0
while c < 5:
    
    print(f'The current number is: {c}')
    c = c + 1
    
    if c == 4:
    print('Not your number.')
else:
    print ('You have reached your limit.')
Could you please help me in finding the mistake? Thank you in advance!
 
     
    