#include <stdio.h>

typedef struct student{
  int id;
  int mark;
}stud;

stud *s1;

int main(){
  s1 = NULL;
  printf("hi");
  return 0;
}