I wanted to know that how can we provide data while debugging in VS Code. For eg.
a = input()
b = input()
c = a + b
print(c)
I also have a input.txt file as follows:
10
20
So when I run python test.py < input.txt, the code should read the data and run.
But while debugging how can I tell the debugger to use the input?
