mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
8 lines
179 B
Plaintext
8 lines
179 B
Plaintext
class ConcatenationTurnsIntoAddition {
|
|
|
|
public static void main(String[] args) throws Exception {
|
|
String s = 1 + (2 + "x") + 2;
|
|
System.out.println(s);
|
|
}
|
|
|
|
} |