Josif_tepe

Untitled

Jan 19th, 2026
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.    
  6.     char c;
  7.     cin >> c;
  8.    
  9.    
  10.     if(isalpha(c)) {
  11.         if(islower(c)) {
  12.             cout << "MALA" << endl;
  13.         }
  14.         else {
  15.             cout << "GOLEMA" << endl;
  16.         }
  17.     }
  18.    
  19.     else {
  20.         cout << "GRESKA" << endl;
  21.     }
  22.     return 0;
  23. }
  24.  
Advertisement
Add Comment
Please, Sign In to add comment