n = 12345 p = None while n >= 10: r = n % 10 n //= 10 if p != None and abs(r-p) != 1: print('No') break p = r else: print('yes')