public static void main(String[] args) {
int res;
if(args.length == 1) {
int x = Integer.parseInt(args[0]);
if(0 <= x) {
res = x;
} else {
res = x * (-1);
}
System.out.println(res + "でどうだろう。");
} else {
System.out.println("値は一個だってばよ。");
}
}