#include <iostream>
using namespace std;

int main() {
	
	int number;
	int students;
	
	// int is the data
	//number,students are the name of the data we are defining in memory	
	
	return 0;
}