blob: fb294ec14dbf0582baf2fefffe7297b9dd877996 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
discard """
action: compile
"""
# This file is prefixed with an "a", because other tests
# depend on it and it must be compiled first.
import strutils
let x = stdin.readLine()
echo x.parseInt + 5
|