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