x = int(input())
y = int(input())
print(x + y)
In running code online, using 2 input() like the one above automatically excludes the \n. The code when ran in pycharm does not run anything, instead it gets an error because it includes \n inside the input(). Is there a way to configure the settings to fix this? If not, is there any text editor that someone would recommend for a beginner who will solve simple coding problems or should I just stick to running code online?