Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * author: tourist
- * created: 12.05.2020 15:50:55
- **/
- #include <iostream>
- #include <vector>
- #include <string>
- int main() {
- setlocale(LC_ALL, "rus");
- matrix<char>A(2,2);
- std::cin >> A;
- char p = A(10, 0);
- std::cout << p;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement