#include <iostream>
using namespace std;
 
int main() {
 
	int number = 103;
	int students = 24;
	
	/*	we are now assigning value to the defined variables
		we are inserting the numeric value of 103 to number
		we are inserting the numeric value of 24 to students
	*/
	
	return 0;
}