import java.io.*;

public class Lab1
{
	private static BufferedReader stdin = 
		new BufferedReader( new InputStreamReader( System.in ) );
        
	public static void main (String [] args) throws IOException
	{
	
		//prompt the user for a single character

		
        	// Read a line of text from the user.


		
		//prompt the user for an integer less than 80
        
        	// Read in the input
        
       		// converts a String into an int value

		//if the integer is less than or equal to 80
		
		/* print out a triangle with a base equal to the user's input integer and string
		 * Example:

		User inputs: * and 4

		*
		**
		***
		****

		OR

		User inputs: e and 8

		e
		ee
		eee
		eeee
		eeeee
		eeeeee
		eeeeeee
		eeeeeeee

		 

		*/
		//if the integer is greater than 80, print out a message that says it's too big
	}
}
