#include<stdio.h>
struct class
{
    int Roll no;
    char Name;
    float Percentage;
};
int main()
{
    struct class student;
    scanf("%d",&student Roll no);
    scanf("%c",&student Name);
    scanf("%f",&student Percentage);
    printf("%d",student Roll no);
    printf("%c",student Name);
    printf("%f",student Percentage);
}