Xquery XML

File: Query.xquery
for $i in (1, 2), $j in ("a", "b")
return i is {$i} and j is {$j}
Output:

i is 1 and j is a
i is 1 and j is b
i is 2 and j is a
i is 2 and j is b