Problem nostatement
User PrunJuice
Submission Time 2024-11-26 14:58:42
Score 0
Max Time N/A
Max Memory N/A

Compile Error

nostatement.cpp: In function ‘int main()’:
nostatement.cpp:37:12: error: incomplete type ‘std::ios_base’ used in nested name specifier
37 | ios_base::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;