﻿#include <stdio.h>     /* 標準入出力(standard I/O) を利用する */

int main( void )
{
  /* まず，変数宣言を行う */
  
  /* 次に実行文を書いていく */
  
  return 0;
}
