test1.cpp 295 B

1234567891011
  1. // Copyright 2019 Dmitry Arkhipov
  2. // Distributed under the Boost Software License, Version 1.0. (See
  3. // accompanying file LICENSE.txt or copy at
  4. // https://www.bfgroup.xyz/b2/LICENSE.txt)
  5. #include <string>
  6. int main() {
  7. return QWERTY == std::string("uiop") ? EXIT_SUCCESS : EXIT_FAILURE ;
  8. }