0_0_38993189_6056.cpp: In function 'int main()':
0_0_38993189_6056.cpp:49:9: error: 'cin' was not declared in this scope
49 | while (cin >> a >> b >> c)
| ^~~
0_0_38993189_6056.cpp:1:1: note: 'std::cin' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
+++ |+#include <iostream>
1 |
0_0_38993189_6056.cpp:58:4: error: 'cout' was not declared in this scope
58 | cout << "w(" << a << ", " << b << ", " << c << ") = "
| ^~~~
0_0_38993189_6056.cpp:58:4: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
0_0_38993189_6056.cpp:59:12: error: 'endl' was not declared in this scope
59 | << 1 << endl;
| ^~~~
0_0_38993189_6056.cpp:1:1: note: 'std::endl' is defined in header '<ostream>'; did you forget to '#include <ostream>'?
+++ |+#include <ostream>
1 |
0_0_38993189_6056.cpp:64:4: error: 'cout' was not declared in this scope
64 | cout << "w(" << a << ", " << b << ", " << c << ") = "
| ^~~~
0_0_38993189_6056.cpp:64:4: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
0_0_38993189_6056.cpp:65:24: error: 'endl' was not declared in this scope
65 | << f[20][20][20] << endl;
| ^~~~
0_0_38993189_6056.cpp:65:24: note: 'std::endl' is defined in header '<ostream>'; did you forget to '#include <ostream>'?
0_0_38993189_6056.cpp:68:3: error: 'cout' was not declared in this scope
68 | cout << "w(" << a << ", " << b << ", " << c << ") = "
| ^~~~
0_0_38993189_6056.cpp:68:3: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
0_0_38993189_6056.cpp:69:21: error: 'endl' was not declared in this scope
69 | << f[a][b][c] << endl;
| ^~~~
0_0_38993189_6056.cpp:69:21: note: 'std::endl' is defined in header '<ostream>'; did you forget to '#include <ostream>'?
|