#include<stdio.h>
int main()
{
    char section;
    int Roll Number;
    char Blood Group;
    printf("enter the section\n");
    scanf("%c",& section);
     printf("enter the Roll Number: ");
     scanf("%d",& Roll Number);
     printf("enter the Blood Group");
     scanf("%c",& Blood group);
     return 0;
}