#include <stdio.h>

int main() {
   
  int marks[5]={90,67,89,35,80}
  printf("%d",marks[2]);

    return 0;
}