i need to take input and keep processing it until i get a zero as an input......

  • created

    Apr '07
  • last reply

    Apr '07
  • 1

    reply

  • 117

    views

  • 2

    users

inp=input()
while inp:
process(inp)
inp=input()

input() parses the input automatically into a number.