Problem potatosalad
User clairexx
Submission Time 2025-08-22 15:19:22
Score 0
Max Time N/A
Max Memory N/A

Compile Error

potatosalad.cpp:1:10: error: #include expects "FILENAME" or <FILENAME>
1 | #include bits/stdc++.h>
| ^~~~
potatosalad.cpp: In function ‘int main()’:
potatosalad.cpp:6:2: error: ‘cin’ was not declared in this scope
6 | cin a >> b;
| ^~~
potatosalad.cpp:1:1: note: ‘std::cin’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
+++ |+#include <iostream>
1 | #include bits/stdc++.h>
potatosalad.cpp:7:2: error: ‘vector’ was not declared in this scope
7 | vector<long long> v(a);
| ^~~~~~
potatosalad.cpp:1:1: note: ‘std::vector’ is defined in header ‘<vector>’; did you forget to ‘#include <vector>’?
+++ |+#include <vector>
1 | #include bits/stdc++.h>
potatosalad.cpp:7:9: error: expected primary-expression before ‘long’
7 | vector<long long> v(a);
| ^~~~
potatosalad.cpp:9:10: