#include <stdio.h>

typedef struct hoge {
  int hoge;
} hoge;

int main() {
  hoge hoge;
  hoge.hoge = 271828;
  printf("%d\n", hoge.hoge);
  return 0;
}
/* end */
