/*#include <stdio.h>
#include <string.h>
int main()
{
int i;
char str[101]={};
gets(str);
for( i=strlen(str)-1 ; i>=0 ; i-- )
{
printf("%c",str[i]);
}
return 0;
}*/
/*#include<stdio.h>
#include<string.h>
int main()
{
int i;
char s1[21]={},s2[21]={},s3[21]={};
scanf("%s\n%s\n%s",s1,s2,s3);
if(s1[strlen(s1)-1] ==s2[0] && s2[strlen(s2)-1]==s3[0] && s3[strlen(s3)-1]==s1[0] )
{
printf("good");
}
else
{
printf("bad");
}
return 0;
}*/
/*
#include<stdio.h>
#include<string.h>
int main()
{
int i;
char str[101]={};
scanf("%s",str);
for( i=0 ; str[i]!=NULL ; i++ )
{
if( str[i]!=',' )
{
printf("%c",str[i]);
}
else
{
printf(" ");
}
}
return 0;
}
*/
/**
ASCII 코드 : 모든 문자는 코드넘버가 있따
' ' 32
'0' 48
'1' 49
..
'9'
'10' (x)
'A' 65
'B' 66
'C' 67
...
'Z'
'a' 97
'b' 98
...
'z'
if(s=='t') (ok)
if(s==116) (ok)
int보다 long long int보다 더 큰 숫자 저장
char str[500]="3213548675453432454687845432442435";
*/
/*
#include<stdio.h>
#include<string.h>
int main()
{
char s = 'a';
//if(s가 소문자인지?)
//if(97<=s && s<=122) (가능)
if('a'<=s && s<='z') //(얘도가능)
//printf("%c",'A'+32);
return 0;
}
*/
/*#include<string.h>
#include<stdio.h>
int main()
{
int i;
char str[1001]={};
scanf("%s",str);
for( i=0 ; str[i]!=NULL ; i++ )
{
if( str[i]>='a'&&str[i]<='z' )
{
str[i]=str[i]-32;
}
else if(str[i]>='A'&&str[i]<='Z')
{
str[i]=str[i]+32;
}
printf("%c",str[i]);
}
return 0;
}*/
#include<string.h>
#include<stdio.h>
int main()
{
int i;
char str[21]
}