PPaste!

sys examples

Home - All the pastes - Authored by Thooms

Raw version

1
2
3
4
5
6
7
import sys

d = sys.stdin.readline()         # to be used instead of input()
# t = sys.stdin.readline()       - can be used for reading indefinite until a condition is reached

sys.stdout.write(d)                # to be used instead of print()
sys.stdout.write(t)