Hoa thành thường

View as PDF



Author:
Problem type
Points: 100 (p) Time limit: 1.0s Memory limit: 256M Input: stdin Output: stdout

Cho một chuỗi kí tự gồm \(n\)n kí tự bất kì \((n≤100)\). Hãy đổi tất cả chữ hoa có trong chuỗi thành chữ thường. Xuất chuỗi ra màn hình.

Input

  • Gồm một dòng duy nhất là một chuỗi kí tự

Output

  • In chuỗi đã đổi ra màn hình

Example

Test 1

Input
4I1K2D14Ti 
Output
4i1k2d14ti

Comments


  • 0
    Avocadorable    11:54 a.m. 30 may, 2024
    print(input().lower())
    

    • 3
      tranvanminhnhat123    12:42 p.m. 25 apr, 2024

      code C++ cho ai cần

      include <bits/stdc++.h>

      using namespace std;
      int main()
      {
      string s;
      getline (cin, s);
      for (int i=0;i<s.size();i++)
      {
      s[i]=tolower(s[i]);
      cout<<s[i];
      }
      return 0;
      }


      • -8
        lkva2019    6:31 p.m. 3 jan, 2023

        This comment is hidden due to too much negative feedback. Click here to view it.


        • -9
          thanhkhoa123    7:02 a.m. 16 jun, 2022

          This comment is hidden due to too much negative feedback. Click here to view it.


          • 6
            minhtuanitk20    2:44 p.m. 11 sep, 2021

            mn nhớ getline đừng cin ko là sai ấy


            • 2
              MinhSharingan    9:14 p.m. 15 mar, 2021

              var s1:string;
              begin
              read(s1);
              write(lowercase(s1));
              end.


              Phức tạp làm j mấy bạn trẻ :VVV

              1 reply

              • 1
                LeQuangMinh0903    7:48 p.m. 24 oct, 2020

                bai nay lam sao the a


                • 0
                  new4phanvanquocdat    7:46 p.m. 7 oct, 2020

                  bạn nào có gợi nào k

                  2 replies

                  • -7
                    nguyenquochuy    7:02 p.m. 7 aug, 2020

                    This comment is hidden due to too much negative feedback. Click here to view it.

                    1 reply