| 시간 제한 | 메모리 제한 | 제출 | 정답 | 맞힌 사람 | 정답 비율 |
|---|---|---|---|---|---|
| 1 초 | 1024 MB | 4758 | 3579 | 3372 | 75.997% |
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 8ドル$ bits where each of them, naturally, can have a value of 0ドル$ or 1ドル$. In certain situations, due to interference from other devices, the reading cannot be done successfully. In this case, the device returns the value 9ドル$ 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 8ドル$ integers $N_1,ドル $N_2,ドル $N_3,ドル $N_4,ドル $N_5,ドル $N_6,ドル $N_7$ and $N_8,ドル indicating the values read by the device ($N_i$ is 0, 1 or 9 for 1ドル ≤ 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.
0 0 1 1 0 1 0 1
S
0 0 1 9 0 1 0 1
F