def int main(){  int i; i= 3; while(i>0) { print(i+5); i=i-1;} return 2;}
