import re

address = input()
pattern = r'https://www'

match_result = re.match(pattern,address)
print(match_result.span())