Comment ajouter Java

int x = 20; // makes x = to 20, while making 20 an integer instead of a string
int y = 21; // same as x
System.out.println("Addition =" x + y);
Quaint Quelea