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