package javaapplication1;
import java.io.IOException;
public class JavaApplication1 {
public static void main(String[] args) throws IOException {
try {
String result = String.format("%d %d %d", 3, 99, 1255);
System.out.println(result);
} catch (Exception e) {
System.out.print(e.toString());
}
}
}
/*
run:
3 99 1255
*/