#include<stdio.h>
main()
{
struct mbc aa;

 aa.a=100;
 aa.b=2.5;
 aa.c='y';

  printf("\n %d %f %c",aa.a,aa.b,aa.c);
  }