#include <stdio.h>

struct Item {
  int id;
  const char *name;
};

int main(void) {
  struct Item i = {1, "SAMPLE"};
  printf("%d %s\n", i.id, i.name);
  return 0;
}
