/*
#include <stdio.h>
int main()
{
printf("special characters\n[\\n,\\\",\\\\] is very important.");
return 0;
}
데이터 /자료
변수 선언
정수 : 숫자 100 10 2 0 -1 -4
실수 : 숫자 (소수점이있는 숫자) 3.5 1.12341 -0.456
문자 : 키보드 한 알 'a' 'b' 't' '^' '%'
자료형
정수 integer -> int
실수 부동소수점 -> floating point -> float
문자 character -> char(캐릭터)
double %lf
long long int %lld
*************************************
자료형
선언 입출력
정수 int %d
실수 float %f
문자 char %c
************************************
이름이 a인 정수를 담는 박스 1개 만들기
정수 변수 a 선언
int a;
이름이 x인 실수를 담는 박스 1개 만들기
실수 변수 x 선언
float x;
이름이 r인 문자를 담는 박스 1개 만들기
문자 변수 r 선언
char r;
1. 입력받기
scanf();
2. 정수 1개 입력받기
scanf("%d");
3. 정수 변수 a에 정수 1개 입력받기
scanf("%d",&a);
1. 명령의끝에는 세미콜론!!!!
2. scanf할때 & 주소연산자
정수 변수 a 출력하기
printf("%d",a);
*/
/*
#include <stdio.h>
int main()
{
int s;
scanf("%d", &s);
printf("%d", s);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char p;
scanf("%c", &p);
printf("%c", p);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
float x;
scanf("%f", &x);
printf("%f", x);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a,b;
scanf("%d %d", &a, &b);
printf("%d %d", a,b);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char x, y;
scanf("%c %c", &x, &y);
printf("%c %c", y, x);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
float x;
scanf("%f", &x);
printf("%.2f", x);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a;
scanf("%d", &a);
printf("%d %d %d", a, a, a);
return 0;
}
*/
#include <stdio.h>
int main()
{
int h, m, s;
scanf("%d:%d:%d", &h, &m, &s);
printf("%d", m);
return 0;
}