i = 0
print ('Hello Mister, what do you want ?')
print (' i - increment, v - view')
while True:
  comm = input()
  if comm == 'i' : i = i + 1
  if comm == 'v' : print ('Counter equals', i)


