/*
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Hello world!\n");
return 0;
}
#include <string.h>
#include <stdio.h>
int main()
{
int i,a=10;
char str[48]={};
scanf("%s",str);
for(i=1;str[i]!=NULL;i++)
{
if(str[i-1]!=str[i])
{
a+=10;
}
else
{
a+=5;
}
}
printf("%d",a);
return 0;
}
아스키코드 : 모든 문자는 고유의 코드번호
'A' 65
'B' 66
'C' 67
...
'Z' 90
'a' 97
'b' 98
...
'z' 122
대문자와 소문자는 32 차이
대문자+32 -> 소문자
소문자-32 -> 대문자
' ' 32
NULL 0
'0' 48
'1' 49
'2' 50
...
'9' @
아스키코드 구하기
#include <stdio.h>
int main()
{
printf("%d",'@');
}
#include <stdio.h>
#include <string.h>
int main()
{
int i;
char str[1001]={};
scanf("%s",str);
for(i=0;str[i]!=NULL;i++)
{
if('A'<=str[i] &&'Z'>=str[i] )
{
str[i]+=32;
}
else if('a'<=str[i]&&'z'>=str[i])
{
str[i]-=32;
}
}
printf("%s",str);
return 0;
}
*/
#include <stdio.h>
#include <string.h>
int main()
{
int i;
char str[21]={};
scanf("%s",str);
for(i=0;str[i]!=NULL;i++)
{
printf("%c",str[i]+2);
}
printf("\n");
for(i=0;str[i]!=NULL;i++)
{
printf("%c",str[i]*7%80+48);
}
return 0;
}