10 lines
68 B
Plaintext
10 lines
68 B
Plaintext
|
{
|
||
|
i = 1
|
||
|
for (;;) {
|
||
|
if (i > NF)
|
||
|
next
|
||
|
print i, $i
|
||
|
i++
|
||
|
}
|
||
|
}
|