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

HO1021 - Шугаман 12

Өгсөн 5 оронтой тооны цифрүүдийг ол.

Input

5 оронтой нэг тоо өгөгдөнө.

Output

Цифрүүдийг хоосон зайгаар тусгаарлан хэвлэ.

Example

Input:
45324

Output:
4 5 3 2 4

Нэмсэн:munkhbat
Огноо:2013-01-12
Хугацааны хязгаарлалт:1s
Эх кодын хэмжээний хязгаарлалт:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Програмчлалын хэлүүд:Бүгд дараах хэлүүдээс бусад: ASM64 NCSHARP JULIA PYPY3

hide comments
2023-10-23 07:49:09
amjilt cyber surgulin 7-1 angin gomo tengis saraanad sn
2023-03-14 02:56:01
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a, b, c, d, e, f;
scanf("%d" ,&a);
b=a%10;
c=(a%100)/10;
d=(a%1000)/100;
e=(a%10000)/1000;
f=a/10000;
printf("%d %d %d %d %d" ,f, e, d, c, b);
}
2023-02-27 07:36:47




























































huulhaa baiya anduudaa

















































































2023-02-15 02:20:09
hukhaa boli
2023-01-21 09:33:32
huulval ukhne
2022-11-11 05:14:42
BODOLT BNU


2022-11-09 03:18:39
#include<bits/stdc++.h>
using namespace std;
int main (){
int x, s, z, p, i, a, b, c, d, e, f, g;
cin>>x;
z=x/10000;
p=x/1000%10;
a=x/100%10;
i=x/10%10;
s=x%10;
cout<<z<<" "<<p<<" "<<a<<" "<<i<<" "<<s<<endl;
}
2022-10-20 08:03:20





































































huulha boli























































































































guij bn chinii amidarliin tuluu





















































































































tam ruu ga ochoorai
2022-10-20 07:41:13
#include<bits/stdc++.h>
using namespace std;
int main (){
int x, s, z, p, i, a, b, c, d, e, f, g;
cin>>x;
z=x/100;
p=x/10%10;
a=x%10;
cout<<z*z<<" "<<p*p<<" "<<a*a<<endl;
}
2022-10-20 07:32:08
#include<bits/stdc++.h>
using namespace std;
int main (){
int x, s, z, p, i, a, b, c, d, e, f, g;
cin>>x;
z=x/10000;
p=x/1000%10;
a=x/100%10;
i=x/10%10;
s=x%10;
cout<<z<<" "<<p<<" "<<a<<" "<<i<<" "<<s<<endl;
}
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.