Problem hidden
|This problem was hidden by Editorial Board member probably because it has incorrect language|version or invalid test data, or description of the problem is not clear.|

RGB7061 - Томоос жижигт

Өгөгдсөн англи цагаан толгойн том үсгийг харгалзах жижиг үсэгт нь шилжүүл.

Input

Англи цагаан толгойн том үсэг

Output

Харгалзах жижиг үсэг

Example

Input:
K

Output:
k

Нэмсэн:Bataa
Огноо:2013-02-05
Хугацааны хязгаарлалт:1s
Эх кодын хэмжээний хязгаарлалт:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Програмчлалын хэлүүд:ADA95 ASM32 BASH BF C NCSHARP CSHARP C++ 4.3.2 CPP C99 CLPS LISP sbcl LISP clisp D ERL FORTRAN HASK ICON ICK JAVA JS-RHINO JULIA LUA NEM NICE OCAML PAS-GPC PAS-FPC PERL PHP PIKE PRLG-swi PYTHON PYPY3 PYTHON3 RUBY SCALA SCM guile ST TCL WHITESPACE

hide comments
2024-03-21 15:50:56
#include <iostream>
using namespace std;
int main() {
char ch;
cin>>ch;
int temp = int(ch) + 32;
char t = char(temp);
cout<<t;
return 0;
}

choko in the house
2023-07-25 14:27:55
#include <iostream>
#include <iomanip>
using namespace std;
int main() {
char a;
cin >> a;
cout << (char) tolower(a);
return 0;
}
2022-03-26 18:06:36
#include <iostream>
#include <iomanip>
using namespace std;

int main() {
char a;
cin >> a;

cout << (char) tolower(a);
return 0;
} // Remzx Official
2021-04-16 07:53:59
#include <bits/stdc++.h>
using namespace std;
int main()
{
int p;
char h,o; cin>>h; p= int (h); o=p+32; cout<< o;
return 0;
}
2021-01-10 12:05:50
#include <iostream>
#include <string>

int main()
{
std::string a = "abcdefghijklmopqrstuvwxyz";
std::string b = "ABCDEFGHIJKLMOPQRSTUVWXYZ";
std::string input;
std::cin >> input;
std::cout << a[b.find_first_of(input)];
return 0;
}
ez
2020-11-20 09:55:07
#include<stdio.h>

int main(){

char a[53]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
char k;
scanf("%c", &k);
int l;
for(int i=0;i<52;i++){
if(k==a[i]){
l=i+26;
break;
}
}
printf("%c",a[l]);
return 0;
} danzo bodow
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.