17-while_chain.cminus 178 Bytes
Newer Older
lyz's avatar
lyz committed
1 2 3 4 5 6 7 8 9 10 11 12 13
int main(void) {
    int i;
    int j;
    i = 10;
    while (i) {
        i = i - 1;
        j = i;
        while(j) {
            j = j - 1;
        }
    }
    return i + j;
}