L8 - B

public
yeskendir.sultanov Mar 28, 2024 Never 114
Clone
C++ l8b.cpp 14 lines (12 loc) | 226 Bytes
1
#include <bits/stdc++.h>
2
3
using namespace std;
4
5
int 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
}