#include <stdio.h>
struct book{
    struct hp{
    int no;
    char aurthur[50];
    int rs;
}
    
}
int main(){
    struct hp bo={1,"kaali",20};
    printf("%d\n",bo.no);
    printf("%s",bo.aurthur);

return 0;
}