0_0_39101633_12093.cpp:1:1: error: 'import' does not name a type
1 | import java.util.Scanner;
| ^~~~~~
0_0_39101633_12093.cpp:1:1: note: C++20 'import' only available with '-fmodules-ts', which is not yet enabled with '-std=c++20'
0_0_39101633_12093.cpp:4:15: error: expected ':' before 'static'
4 | public static void main(String args[]) {
| ^~~~~~~
| :
0_0_39101633_12093.cpp:4:33: error: 'String' has not been declared
4 | public static void main(String args[]) {
| ^~~~~~
0_0_39101633_12093.cpp:28:2: error: expected ';' after class definition
28 | }
| ^
| ;
0_0_39101633_12093.cpp: In static member function 'static void Main::main(int*)':
0_0_39101633_12093.cpp:5:17: error: 'Scanner' was not declared in this scope
5 | Scanner sc= new Scanner(System.in);
| ^~~~~~~
0_0_39101633_12093.cpp:6:23: error: 'sc' was not declared in this scope
6 | while(sc.hasNext()) {
| ^~
0_0_39101633_12093.cpp:23:25: error: 'System' was not declared in this scope
23 | System.out.println(ans);
| ^~~~~~
|