Intercepting Information

아직 제출이 없습니다시간 제한1초메모리 제한1024 MB

문제

Spies Breaching Computers (SBC) is a private digital spy agency that is developing a new device for intercepting information using electromagnetic waves, which allows spying even without physical contact with the target.

The device tries to collect information one byte at a time, this is, a sequence of 88 bits where each of them, naturally, can have a value of 00 or 11. In certain situations, due to interference from other devices, the reading cannot be done successfully. In this case, the device returns the value 99 for the corresponding bit, informing that the reading could not be performed.

In order to automate the recognition of the information the device reads, a request was made for a program that, based on the information read by the device, informs whether all bits were read successfully or not. Your task is to write this program.

입력

The input consists of a single line, containing 88 integers N_1N\_1, N_2N\_2, N_3N\_3, N_4N\_4, N_5N\_5, N_6N\_6, N_7N\_7 and N_8N\_8, indicating the values read by the device (N_iN\_i is 0, 1 or 9 for 1i81 ≤ i ≤ 8).

출력

Print a single line containing the capital letter “S” if all bits are read successfully; otherwise print a single line containing the capital letter “F”, corresponding to a failure.