# coding: utf-8 data = input() number_of_box = len(data) box_safe = data.count('o') box_out = number_of_box - box_safe for i in range(number_of_box): print(box_safe / (number_of_box - i) * 100) if data[i] == 'o': box_safe -= 1