Problem nostatement
User SongWei6339
Submission Time 2023-02-10 10:20:52
Score 0
Max Time N/A
Max Memory N/A

Compile Error

nostatement.cpp: In function ‘int main()’:
nostatement.cpp:37:7: error: incomplete type ‘std::ios’ {aka ‘std::basic_ios<char>’} used in nested name specifier
37 | ios::sync_with_stdio(0);
| ^~~~~~~~~~~~~~~
nostatement.cpp:38:2: error: ‘cin’ was not declared in this scope
38 | cin.tie(0);
| ^~~
nostatement.cpp:7:1: note: ‘std::cin’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
6 | #include <cstdlib>
+++ |+#include <iostream>
7 | using namespace std;