[code=java]public class TestInteger {
public static void main(String[] args) {
int w = new Integer(args[0]).intValue();
int h = Integer.parseInt(args[1]);
// int h = Integer.valueOf(args[1]).intValue();
for (int i = 0; i < w; i++) {
StringBuffer sb = new StringBuffer();