public static void main(String[] args) {
if(args.length == 2) {
int x = Integer.parseInt(args[0]);
int y = Integer.parseInt(args[1]);
System.out.println("元の数は、" + "x=" + x + ", y=" + y);
x = x+y;
y = x-y;
x = x-y;
System.out.println("今となっては..." + "x=" + x + ", y=" + y);
} else {
System.out.println("二つじゃないとできないんで。");
}
}