# Ces programmes sont sous licence CeCILL-B V1.

s = "un oui ou un non ce n'est pourtant pas la même chose"
l = len(s)
n = 0
while n <= l - 3 and not (s[n] == "o" and s[n+1] == "u" and s[n+2] == "i"):
  n = n + 1
if n > l - 3:
  print("pas de oui")
else:
  print(n)
