hieroglyphs.cpp: In function 'std::vector<int> ucs(std::vector<int>, std::vector<int>)':
hieroglyphs.cpp:35:5: error: 'itn' was not declared in this scope; did you mean 'int'?
35 | itn A0=0,A1=0,B0=0,B1=0;
| ^~~
| int
hieroglyphs.cpp:37:49: error: 'A0' was not declared in this scope; did you mean 'A'?
37 | for (int i=0; i<A.size(); i++){if (A[i]==0){A0++;}else{A1++;}}
| ^~
| A
hieroglyphs.cpp:37:60: error: 'A1' was not declared in this scope; did you mean 'A'?
37 | for (int i=0; i<A.size(); i++){if (A[i]==0){A0++;}else{A1++;}}
| ^~
| A
hieroglyphs.cpp:38:49: error: 'B0' was not declared in this scope; did you mean 'B'?
38 | for (int i=0; i<B.size(); i++){if (B[i]==0){B0++;}else{B1++;}}
| ^~
| B
hieroglyphs.cpp:38:60: error: 'B1' was not declared in this scope; did you mean 'B'?
38 | for (int i=0; i<B.size(); i++){if (B[i]==0){B0++;}else{B1++;}}
| ^~
| B
hieroglyphs.cpp:42:9: error: 'A0' was not declared in this scope; did you mean 'A'?
42 | if (A0==0 || B0==0){
| ^~
| A
hieroglyphs.cpp:42:18: error: 'B0' was not declared in this scope; did you mean 'B'?
42 | if (A0==0 || B0==0){
| ^~
| B
hieroglyphs.cpp:43:22: error: 'A1' was not declared in this scope; did you mean 'A'?
43 | int lk = min(A1,B1);
| ^~
| A
hieroglyphs.cpp:43:25: error: 'B1' was not declared in this scope; did you mean 'B'?
43 | int lk = min(A1,B1);
| ^~
| B
hieroglyphs.cpp:51:9: error: 'A0' was not declared in this scope; did you mean 'A'?
51 | if (A0==1 || B0==1){
| ^~
| A
hieroglyphs.cpp:51:18: error: 'B0' was not declared in this scope; did you mean 'B'?
51 | if (A0==1 || B0==1){
| ^~
| B