C++程序  |  12行  |  109 B

#include <stdio.h>

int main ()
{
  int i=0;
  printf("%d\n",i);
  i=1;
  printf("%d\n",i);
  
  return 0;
}