#include <stdio.h>
void main (){
    i=-12
    while(i<12){
    printf("%d", i);
    i++;
    }
}