123456789101112
#include <iostream> #include<string> int main() { std::string choice; std::cin >> choice; if(choice == "ok") std::cout << "OK\n"; else std::cout << "Not OK\n"; }