Rating:

So we're given Python bytecode. I went ahead and decompiled it.

The decompiled python code is here:

```
# Embedded file name: reversing2.py
# Compiled at: 2018-10-07 19:28:58
from datetime import datetime
Fqaa = [102, 108, 97, 103, 123, 100, 101, 99, 111, 109, 112, 105, 108, 101, 125]
XidT = [83, 117, 112, 101, 114, 83, 101, 99, 114, 101, 116, 75, 101, 121]

def main():
print 'Clock.exe'
input = raw_input('>: ').strip()
kUIl = ''
for i in XidT:
kUIl += chr(i)

if input == kUIl:
alYe = ''
for i in Fqaa:
alYe += chr(i)

print alYe
else:
print datetime.now()

if __name__ == '__main__':
main()
```

The program prints the flag (which is `flag{decompile}`) when the right key is input (which is `SuperSecretKey`). You just have to convert the array elements from decimal to ASCII characters to get these.