#include <stdio.h>

int main() {
  while (0) {
    printf("hello 1\n");
  } 

  while (1) {
    printf("hello 2\n");
  } 
  
  return(0);
}
