> oh, sorry, I was wrong with the name of the topic
Using explicit data types makes it easier to discover what is going on...
from strutils import parseint
var
s: string = readLine(stdin)
int1: int = parseint(s)
int2 = 5
echo int1 + int2
Run
