#include <stdio.h>
int main(int argc, char *argv[]) {
  int students;
  printf("\nHow many students ?>");
  scanf("%d", &students);
  printf("%d is the number of students\n", students);
  return 0; 
}

