I'm very new to python/ programming in general
I'm making a script in which the user is given a random square number & has to report the square root of that number
The script itself is working fine, assuming I save the file within sublime, then run it separately through IDLE
When I press Ctrl + B, the script runs within sublime, but i'm unable to input anything (I type the number and press enter). In IDLE, typing the answer and pressing enter would show the next line
my input function itself is
x = int(input("What is the square root of "+str(b)+"? "))