Input
df 0 df 1 df 2 df 3 df 10 df 11 df 13
Output
1 1 2 3 3840 10395 135135
Input
sumd 0 sumd 3 sumd 23 sumd 999 sumd 8756
Output
0 3 5 27 26
Input
dup [1,2,3] dup [] dup [666] dup [4,4,2,3,8,2]
Output
[1,1,2,2,3,3] [] [666,666] [4,4,4,4,2,2,3,3,8,8,2,2]
Input
pal "abcba" pal "xyzaz" pal "" pal "a" pal "aa" pal "aba" pal "abb" pal "abcdedcbz"
Output
True False True True True True False False
Input
apply2 (+ 2.5) 10.5 apply2 (* 3) 4 apply2 ("hello " ++) "peter"
Output
15.5 36 "hello hello peter"