Created
December 29, 2021 09:28
-
-
Save riverstore/ba9cb7f5f5f2d9142b25bf25b4aea7a8 to your computer and use it in GitHub Desktop.
Python file for test Online Judge system that input/output file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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