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