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.|

RGB7160 - Том үсэгт шилжүүл

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

Input

Нэг мөрөнд зайгаа тусгаарлагдан өгөгдөнө.

Output

Харгалзах том үсгүүд нэг мөрөнд зайгаар тусгаарлагдан хэвлэгдэнэ.

Example

Input:
 A n d

Output:
A N D

Нэмсэн: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
2023-07-25 14:37:07
#include <iostream>
#include <iomanip>
using namespace std;
int main() {
char a, b, c;
cin >> a >> b >> c;
cout << (char) toupper(a) << " " << (char) toupper(b) << " " << (char) toupper(c) << endl;
return 0;
}
2023-03-16 10:42:30
#include<stdio.h>
#include<string.h>
main()
{int k,l,i,j;
char s[2],n[2],b[2];
scanf("%s%s%s",s,n,b);
if(s[0]>='A'&&s[0]<='Z') printf("%c ",s[0]); else printf("%c ",s[0]-32);
if(n[0]>='A'&&n[0]<='Z') printf("%c ",n[0]); else printf("%c ",n[0]-32);
if(b[0]>='A'&&b[0]<='Z') printf("%c ",b[0]); else printf("%c ",b[0]-32);
}
2023-02-27 07:01:06
nigga u r black
2022-03-26 18:23:02
#include <iostream>
#include <iomanip>
using namespace std;

int main() {
char a, b, c;
cin >> a >> b >> c;

cout << (char) toupper(a) << " " << (char) toupper(b) << " " << (char) toupper(c) << endl;
return 0;
} // Remzx Official
2022-03-18 10:43:17
#include<bits/stdc++.h>
using namespace std;
int main() {
char x,y,z;
cin >> x >> y >> z ;
if(int(x)>96 && 123>int(x)) cout << char(int(x)-32) << " " ;
else if(int(x)>64 && 91>int(x)) cout << x << " " ;
if(int(y)>96 && 123>int(y)) cout << char(int(y)-32) << " " ;
else if(int(y)>64 && 91>int(y)) cout << y << " " ;
if(int(z)>96 && 123>int(z)) cout << char(int(z)-32) ;
else if(int(z)>64 && 91>int(z)) cout << z ;
return 0;
}
2022-01-07 11:53:51
#include<iostream>
using namespace std;
int main(){
int a=3;
char b;
while(a>0){
cin>>b;
if(char(b)>91){
cout<<char(b-32)<<" ";
}
else{
cout<<char(b)<<" ";
}
a--;
}

return 0;
}
Dulguun
2021-11-06 05:35:18


Last edit: 2021-12-17 09:54:06
2021-10-16 17:37:22
a =["A","B","C","D","E","F",'G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z']
j =["a",'b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z']
t=0
x,y,z=input().split()
while(x!=j[t] or x==a[t]):
if(x==a[t]):
break
t=t+1
p=a[t]
if(x!=a[t]):
p=a[t]
t=0
while(y!=j[t]):
if(y==a[t]):
break
t=t+1
h=a[t]
if(y!=a[t]):
h=a[t]
t=0
while(z!=j[t]):
if(z==a[t]):
break
t=t+1
r=a[t]
if(z!=a[t]):
r=a[t]
print(p,h,r)
2021-04-16 08:06:53
#include <bits/stdc++.h>
using namespace std;
int main()
{
// long long a[1001],b[100],p,q,r,x,m,l=0,c,d=1,i,e,f,j,MAX,s=0,k,z,x1=0,y1,z1,x2=0,y2,z2,k1,k2,k3,phi;
long long x,y,z;
char a,b,c,d,e,f;
cin>>a>>b>>c;
x= char (a);
y= char (b);
z= char (c);

if(x>97) x=x-32;
if(y>97) y=y-32;
if(z>97) z=z-32;

d= int (x);
e= int (y);
f= int (z);

cout<<d<<" "<<e<<" "<<f;

return 0;
}
2021-02-09 08:08:18
ene zai awsan tegheer endl bish zugeer zai aw
" ";
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.