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