1 int a[91];
2 int b, c;
fn1()3 void fn1() {
4   int n, m;
5   do {
6     a[c--];
7     a[--c] = m;
8     a[--m] = b;
9   } while (n);
10 }
11 
12