1 // Copyright 2019 Dmitry Arkhipov 2 // Distributed under the Boost Software License, Version 1.0. (See 3 // accompanying file LICENSE_1_0.txt or copy at 4 // http://www.boost.org/LICENSE_1_0.txt) 5 6 7 #include <string> 8 #include <iostream> 9 main(int,char const ** argv)10int main(int, char const** argv) { 11 return QWERTY == std::string("UIOP") ? EXIT_SUCCESS : EXIT_FAILURE; 12 } 13