DEBSOURCES
Skip Quicknav
sources / python-lsp-rope / 0.1.17-1 / test / fixtures / simple.py
123456789101112
import sys def main(): a = int(sys.stdin.read()) b = 20 print(a + b) c = a + b a, b = 30, 40 print(a + b)