thacvan
Rating
1454
Problems
203
Points
32578
Rating #
1504
Points #
1864
About
Input/Output though a file (Part 1):
import io
import sys
sys.stdin=open("input.inp",'r')
sys.stdout=open("output.out",'w')
Input/Output though a file (Part 2):
input_buffer=io.BytesIO(sys.stdin.buffer.readline())
n=input_buffer.read().decode()
Rating History
, #