input

Input

Just like the Out println: name used before from the inOut package that was meant to print the value in the standard output, prototype In is used for reading values from the standard input.

var String name;
name = In readLine;
var Int n;
n = In readInt;