#include<stdio.h>
int main()
{
 int rollnumber ;
 float section ,bloodgroup;
 section ='E';
 rollnumber=5;
 bloodgroup='O';
 printf("Section:\n",section);
 printf("Roll Number: \n",rollnumber);
 printf("Blood Group: \n",bloodgroup);
 return 0;
}