/*
코드업 아이디 andy0914
코드업 비밀번호 andy0914
특목코 아이디 andy0914@gmail.com
특목코 비밀번호 andy0914
********자료형 ( 꼭 기억하기!!!)
정수 int %d
실수 flaot %f
문자 char %c
*******************
scanf 받을때는 변수 앞에 꼭 주소 연산자 써주기!
&a
*/
/*
#include<stdio.h>
int main()
{
int s;
scanf("%d",&s);
printf("%d",s);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
char s;
scanf("%c",&s);
printf("%c",s);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
float t;
scanf("%f",&t);
printf("%f",t);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
int f;
scanf("%d",&f);
printf("%d %d %d",f,f,f);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
int h,m,s;
scanf("%d:%d:%d",&h,&m,&s);
printf("%d",m);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
char h,g;
scanf("%c %c",&h,&g);
printf("%c %c",g,h);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
int y;
scanf("%d",&y);
printf("%d%%",y);
return 0;
}
*/



