/* 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
	{
		String ID = "10"; //rs.getInt("id");
		String nomeCargo = "Analista de Sistemas"; //rs.getString("nome");
		String nivelCargo = "Senior"; //rs.getString("nivel");
		System.out.format("ID: %-4s Nome do cargo: %-50s Nível do cargo: %s", ID , nomeCargo, nivelCargo);
	}
}