#include<iostream>
using namespace std;
int main(void)
{
char small;
cin >> small;
if ((small >= 'a') && (small <= 'z'))
{
cout << "대문자" << small - 32 << endl;
cout << "소문자" << small << endl;
}
else if ((small >= 'A') && (small <= 'Z'))
{
cout << "대문자" << small << endl;
cout << "소문자" << small + 32 << endl;
}
else
cout << "알파벳이 아님" << endl;
return 0;
}
여기서 한쪽은 계속 숫자로 나오는데 이걸 어떻게 고쳐야 할까요?