12 lines
138 B
Text
12 lines
138 B
Text
include get.e
|
|
|
|
function snd(sequence s)
|
|
return s[2]
|
|
end function
|
|
|
|
integer a,b
|
|
|
|
a = snd(get(0))
|
|
b = snd(get(0))
|
|
|
|
printf(1," %d\n",a+b)
|