#include <stdio.h>
#include<ctype.h>
int main(){
  struct hostel_detail{
      int hostel_room_no;
      char food;
      int deposit_amount;
  };
  struct student{
      char name[20];
      int number;
      char branch[5];
      struct hostel_detail hostel;
  };
  static struct student student1={"seetha",103,"IT",10,'I',2500};
  printf("%s%d%s%d%c%d\n",student1.name,student1.number,student1.branch,student1.hostel_room_no,student1.food,student1.hostel.deposit_amount);
}