9 lines
158 B
Python
9 lines
158 B
Python
|
#!/usr/bin/python3
|
||
|
import sys
|
||
|
for line in sys.stdin:
|
||
|
if "United" in line:
|
||
|
print('States:0.9 :0.1')
|
||
|
else:
|
||
|
print('the:0.6 a:0.3 :0.1')
|
||
|
|