/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;
import java.util.HashMap;
import java.util.Map;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		
		Map<String, String> occupations = new HashMap<String, String>();
		
		occupations.put("FRONTEND", new String("programador front-end"));
	    occupations.put("BACKEND", new String("programador back-end"));
	    occupations.put("MOBILE", new String("programador mobile"));
	    occupations.put("GENERIC", new String("programador"));
	
		String profession = occupations.get("MOBILE");
		String mailContent = String.format("Assim que tivermos oportunidade para %s, entraremos em contato.", profession);
		System.out.println(mailContent);
		
	}
}