#include<stdio.h>
int main()
{
    int s,r,b;
    scanf(" %c %c %c",&s,&r,&b);
    printf("Section: %c\nRoll Number: %c\nBlood Group: %c",s,r,b);
    return 0;
}