import re

s = input()
match = re.search('\\\\x\d\d', s, re.IGNORECASE)
print(match)