21 lines
641 B
Python
21 lines
641 B
Python
import re
|
|
import sys
|
|
|
|
for line in sys.stdin:
|
|
if re.search(r'UFO|paranormal|UFOs|video|night|house|saw|camera|lights|light|alien|aliens|ghost|object|dream|sky|room|ufo|craft|happened|sightings|footage|dreams|sleep', line):
|
|
print("P")
|
|
else:
|
|
print("S")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
happened|sightings|footage|dreams|sleep|videos|experiences|weird|objects|flying|strange|ET|photo|moving|fake|sighting|door|ghosts|looks|bed|spirits|paralysis|pictures|glitch|shadow|picture|space|photos|looked|phenomena|contact|spirit|stories|phenomenon|window|ufos|haunted|lol|creepy|lanterns|dark|scared|cameras|balloon|seen|beings|disclosure|story
|
|
|
|
"""
|