mirror of
https://gitcode.com/Zengtudor/alg2025.git
synced 2025-12-19 21:51:44 +00:00
8 lines
92 B
Python
8 lines
92 B
Python
import re
|
|
import sys
|
|
|
|
stdin:str = sys.stdin.read()
|
|
|
|
lines = re.split(r"\s+",stdin.strip())
|
|
|