10 lines
126 B
Text
10 lines
126 B
Text
|
|
import extensions;
|
||
|
|
|
||
|
|
public program()
|
||
|
|
{
|
||
|
|
var s := "12345";
|
||
|
|
s := (s.toInt() + 1).toString();
|
||
|
|
|
||
|
|
console.printLine(s)
|
||
|
|
}
|