def Answer(call):

 call.playMessage("helloworld")
 call.waitIfPlaying(-1)

 syn = call.getSynthesizer()
 syn.speak("Please press a key on your telephones key pad.")

 ok = call.inputWait1(1, '#', 10000)

 if ( ok ):
  syn.speak( "You pressed " + call.getChar() + " ." )

 else:
  syn.speak( "You pressed nothing." )

 syn.speak("That was easy, wasnt it?")
 syn.wait(-1)
 
 return