1"""
2categories: Modules,sys
3description: Overriding sys.stdin, sys.stdout and sys.stderr not possible
4cause: They are stored in read-only memory.
5workaround: Unknown
6"""
7import sys
8
9sys.stdin = None
10print(sys.stdin)
11