image.png

    1. #include <iostream>
    2. #include <string>
    3. using namespace std;
    4. int main()
    5. {
    6. string str;
    7. while(cin>>str)
    8. {
    9. for(int i = 0;i<str.size();i++)
    10. {
    11. if(str[i]>='A'&&str[i]<='Y')
    12. {
    13. str[i] = str[i]-'A'+'a'+1;
    14. }
    15. else if(str[i]=='Z')
    16. {
    17. str[i] = 'a';
    18. }
    19. else if(str[i]>='a'&&str[i]<='c')
    20. {
    21. str[i] = '2';
    22. }
    23. else if(str[i]>='d'&&str[i]<='f')
    24. {
    25. str[i] = '3';
    26. }
    27. else if(str[i]>='g'&&str[i]<='i')
    28. {
    29. str[i] = '4';
    30. }
    31. else if(str[i]>='j'&&str[i]<='l')
    32. {
    33. str[i] = '5';
    34. }
    35. else if(str[i]>='m'&&str[i]<='o')
    36. {
    37. str[i] = '6';
    38. }
    39. else if(str[i]>='p'&&str[i]<='s')
    40. {
    41. str[i] = '7';
    42. }
    43. else if(str[i]>='t'&&str[i]<='v')
    44. {
    45. str[i] = '8';
    46. }
    47. else if(str[i]>='w'&&str[i]<='z')
    48. {
    49. str[i] = '9';
    50. }
    51. }
    52. cout<<str<<endl;
    53. }
    54. }