#include <iostream>
using namespace std;
int main()
{
	int n[10];
	n[5]=5;
	n[50]=50;
	n[100]=100;
	
	cout<<n[5]<<endl<<n[50]<<endl<<n[100];	
}