/* Helloプログラム */

#include <stdio.h>
main( )
{
 int a ;
 a = 2 ;
 printf("変数 a の値は %d です", a );
}
