7 lines
140 B
Text
7 lines
140 B
Text
decl int input
|
|
set input (in int console)
|
|
if (= (mod input 2) 1)
|
|
out "odd" endl console
|
|
else
|
|
out "even" endl console
|
|
end if
|