class Prueba{
    
    public static void main(String[] args) {
        
		String a = "Central:";
		
		System.out.println(a.endsWith(":"));	
				
	
	}
    
}