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