Skip to content

Instantly share code, notes, and snippets.

@riverstore
Created December 29, 2021 09:28
Show Gist options
  • Save riverstore/ba9cb7f5f5f2d9142b25bf25b4aea7a8 to your computer and use it in GitHub Desktop.
Save riverstore/ba9cb7f5f5f2d9142b25bf25b4aea7a8 to your computer and use it in GitHub Desktop.
Python file for test Online Judge system that input/output file
import sys
# For getting input from input.txt file
sys.stdin = open('a+b.in', 'r')
# Printing the Output to output.txt file
sys.stdout = open('a+b.out', 'w')
print(sum(map(int, input().split())))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment