import java.util.*;
import java.util.regex.*;

class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
			String[] RESERVED_WORDS = { "id", "url" };
			String[] result = {"id report with report-id is in the url but not in the identifier (id)"};
			Arrays.stream(RESERVED_WORDS).forEach(word -> result[0] = result[0].replaceAll("(?i)(?<![\\w-])" + Pattern.quote(word) + "(?![\\w-])", word.toUpperCase()));
			System.out.println(result[0]); 
		
	}
}