Back to: [wiki:SoftwareOverview Programming] ---- = That's-a Big Number Custom Function solution = == Solution == {{{ #!python def inputNumber(prompt): inStr = "" while not inStr.isdigit(): inStr = input(prompt) return int(inStr) x=inputNumber("Enter x-->") y=inputNumber("Enter y-->") z = pow(x,y) if z > 100: print("That's-a big number!") else: print("Aw, its only",z) }}} == Output == {{{ Enter x--> 2 Enter y--> 3 Aw, its only 8 }}}