public class Str1 { public static void main(String[] args) { byte[] b = {99,112,109}; String str = new String(b); System.out.println(str); } }