/*
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Hello world!\n");
return 0;
}
*/
/*
#include <stdio.h>
#include <string.h>
int main()
{
char str[201]={};
int i;
gets(str);
for(i=0;str[i]!=NULL;i++)
{
if(str[i]>='d'&&str[i]<='z')
{
str[i]-=3;
}
else if(str[i]=='a'||str[i]=='b'||str[i]=='c')
{
str[i]+=23;
}
}
printf("%s",str);
return 0;
}
*/
/*
#include <stdio.h>
#include <string.h>
int main()
{
char str[201]={};
int i;
gets(str);
for(i=0;str[i]!=NULL;i++)
{
if(str[i]>='a'&&str[i]<='w')
{
str[i]+=3;
}
else if(str[i]=='x'||str[i]=='y'||str[i]=='z')
{
str[i]-=23;
}
}
printf("%s",str);
return 0;
}
*/
/*
#include <stdio.h>
#include <string.h>
int main()
{
char str[51]={};
int i,s=10;
scanf("%s",str);
for(i=1;str[i]!=NULL;i++)
{
if(str[i]==str[i-1])
{
s+=5;
}
else if(str[i]!=str[i-1])
{
s+=10;
}
}
printf("%d",s);
return 0;
}
*/
/*
#include <stdio.h>
#include <string.h>
int main()
{
char str[12]={'A','B','C','D','E','F','G','H','I','J','K','L'};
int a[1000001],i,arr[10]={0,1,2,3,4,5,6,7,8,9};
scanf("%s %d",str,&a);
for(i=0;str[i]!=NULL;i++)
{
a%60
}
}
*/
/*
#include <stdio.h>
#include <string.h>
int main()
{
char str[101],s[101];
scanf("%s %s",str,s);
if(strlen(str)<strlen(s))
{
printf("%s %s",str,s);
}
else if(strlen(str)>strlen(s))
{
printf("%s %s",s,str);
}
else if(strlen(str)==strlen(s))
{
for(int i=0;str[i]!=NULL;i++)
{
if(str[i]<s[i])
{
printf("%s %s",str,s);
break;
}
else if(str[i]>s[i])
{
printf("%s %s",s,str);
break;
}
}
}
return 0;
}
*/