#include #include #include #include #include #include using std::string, std::cin, std::cout, std::endl; bool strIsUpper(const string& s) { return std::accumulate(s.begin(), s.end(), true, [](bool res, char c) {return res && (!isalpha(c) || isupper(c)); }); } int main() { string s; getline(cin, s); cout << strIsUpper(s) << endl; }