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

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

/* 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, List<String >> mdaps = new HashMap<String, List<String >>();
		 
	      List<String > List1 = new ArrayList<String>();
          List<String > List2 = new ArrayList<String>();
          List<String > List3 = new ArrayList<String>();

          List1.add("Profile");
          List2.add("Applicability");
          List3.add("Level 1");
    
	  mdaps.put("Scored", List1 );
	  mdaps.put("Scored", List2 );
	  mdaps.put("Not Scored", List3 );

	  for(Map.Entry<String, List<String>> entry : mdaps.entrySet()){
              
              if(entry.getKey().contrains("(Scored)"))
	      System.out.println(entry.getKey()+" "+ entry.getValue());
	  }
	}
}