Problem card
User dumbfounded47
Submission Time 2026-01-14 12:59:41
Score 0
Max Time N/A
Max Memory N/A

Compile Error

card.cpp:1:2: error: invalid preprocessing directive #inlcude; did you mean #include?
1 | #inlcude <bits/stdc++.h>
| ^~~~~~~
| include
card.cpp: In function ‘int main()’:
card.cpp:6:2: error: ‘string’ was not declared in this scope
6 | string sequance;
| ^~~~~~
card.cpp:1:1: note: ‘std::string’ is defined in header ‘<string>’; did you forget to ‘#include <string>’?
+++ |+#include <string>
1 | #inlcude <bits/stdc++.h>
card.cpp:8:2: error: ‘cin’ was not declared in this scope
8 | cin >> m >> k >> word;
| ^~~
card.cpp:1:1: note: ‘std::cin’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
+++ |+#include <iostream>
1 | #inlcude <bits/stdc++.h>
card.cpp:8:19: error: ‘word’ was not declared in this scope
8 | cin >> m >> k >> word;
| ^~~~