Created
December 6, 2020 11:29
-
-
Save chermehdi/c2d5ca3d487027301de63cc49c635d2f to your computer and use it in GitHub Desktop.
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
# A program that reads input from filename | |
# And prints output to stdout | |
with open("filename.in", "r") as f: | |
a, b = map(int, f.readline().split()) | |
print(a * b) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment