1#include <bits/stdc++.h>2 3using namespace std;4 5int main() {6 char x;7 cin >> x;8 if ('A' <= x && x <= 'Z') {9 cout << "uppercase";10 } else {11 cout << "lowercase";12 }13 return 0;14}