mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
11 lines
242 B
Java
11 lines
242 B
Java
class ConcatenationTurnsIntoAddition {
|
|
|
|
public static void main(String[] args) throws Exception {
|
|
String s = 1 + m<caret>() + 2;
|
|
System.out.println(s);
|
|
}
|
|
|
|
private static String m() {
|
|
return 2 + "x";
|
|
}
|
|
} |