Run ID:144920

提交时间:2026-01-24 19:36:25

#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; if(a>='a'&&a<='z')cout<<"Lower Letter"<<endl; else if(a>='A'&&a<='Z')cout<<"Upper Letter"<<endl; else cout<<"other"<<endl; return 0; }