10 lines
198 B
Python
10 lines
198 B
Python
|
#!/usr/bin/python3
|
||
|
import sys
|
||
|
for line in sys.stdin:
|
||
|
ctx = line.split('\t')[6:]
|
||
|
|
||
|
if ctx[0].endswith('\n'):
|
||
|
print('The:0.7 A:0.2 :0.1')
|
||
|
else:
|
||
|
print('the:0.6 a:0.3 :0.1')
|
||
|
|