~cpp def pivo(n): if n > 1: return pivo(n-1) + pivo(n-2) else: return 1 if __name__== '__main__': print "What ?:" print pivo(input()-1)