n = raw_input("Give input? ")
if n in ["0","1","2","3","4","5","6","7","8","9"]:
  print "Your input is a digit!"
else:
  print "What, no numbers?"
