import java.io.IOException;
import java.io.InputStream;
import java.util.jar.Attributes;
import java.util.jar.Manifest;

public class JI9053398 {

	public static void main(String[] args) throws IOException {
		JI9053398 j = new JI9053398();
		InputStream stream = j.getClass().getClassLoader().getResourceAsStream("META-INF/MANIFEST.MF"); 
		Manifest manifest = new Manifest(stream); 
		Attributes attributes = manifest.getMainAttributes(); 
		System.out.println( attributes.getValue("Implementation-Title") ); 

	}

}
