//#include <stdio.h>
//
//int main()
//{
// int y, m, d;
// scanf("%d.%d.%d", &y, &m, &d );
// printf("%04d.%02d.%02d", y, m, d );
// return 0;
//}
/*
산술연산자 + - * / %
10 + 5
10 - 5
10 * 5
10 / 5 (10을 5로 나눈 몫 2)
10 % 5 (10을 5로 나눈 나머지 0)
scanf
10 / 3 (10을 3으로 나눈 몫 3)#include <stdio.h>
(float)10 / 3 3.333333333
강제형변환
int -2147483648 ~ 2147483647
int + int -> int (x) overflow : 데이터가 표현할수있는 범위를 넘을때
(long long int)int + int -> long long int : %lld
*/
/*
#include <stdio.h>
int main()
{
long long int h, m;
scanf ("%lld %lld", &h, &m);
printf("%lld", h+m);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
long long int u, m;
scanf("%lld %lld", &u, &m);
printf("%lld", u+m);
return 0;
}
아스키코드 : 모든 문자는 코드 넘버가 정해져있다.
'a' 97
'b' 98
'c' 99
...
'A' 65
'B' 66
*/
/*
#include <stdio.h>
int main()
{
char a;
scanf("%c", &a);
printf("%c", a+1);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a, b;
scanf("%d %d", &a, &b);
printf("%d", a/b);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a, b;
scanf("%d %d", &a, &b);
printf("%d", a%b);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
long long int a;
scanf("%lld", &a);
printf("%lld", ++a);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a, b;
scanf("%d %d", &a, &b);
printf("%lld\n", (long long int)a+b);
printf("%d\n", a-b);
printf("%lld\n", (long long int)a*b);
printf("%d\n", a/b);
printf("%d\n", a%b);
printf("%.2f", (float)a/b);
return 0;
}
*/
/*
#include <stdlib.h>
int main()
{
int a,b,c;
scanf("%d %d %d", &a, &b, &c);
printf("%d\n", a+b+c);
printf("%.1f", (float)(a+b+c)/3);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a, b;
scanf("%d %d", &a, &b);
printf("%d\n", a+b);
printf("%d\n", a-b);
printf("%d\n", a*b);
printf("%d\n", a/b);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
float a, b;
scanf("%f %f", &a, &b);
printf("%.2f", (float)a*b);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
float a, b;
scanf("%f %f", &a, &b);
printf("%.1f", (float)a*b/2);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a, b, c;
scanf("%d %d %d", &a, &b, &c);
printf("%.2f", (float)(a+b+c)/3);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a, b;
scanf("%d", &a);
b=a/60;
a=b%60;
printf("%d %d",a,b);
return 0;
}
*/
숙제