/*
#include <stdio.h>
int main()
{
int a, b;
scanf("%d %d", &a, &b);
printf("%d+%d=%d\n", a, b, a+b);
printf("%d-%d=%d\n", a, b, a-b);
printf("%d*%d=%d\n", a, b, a*b);
printf("%d/%d=%d\n", a, b, a/b);
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, c;
scanf("%d %d %d", &a, &b, &c);
printf("%d", a+b+c);
printf("\n%.1f", (float)(a+b+c)/3);
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, c;
scanf("%d %d %d", &a, &b, &c);
printf("%d" a+b+c);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a;
scanf("%d", &a);
printf("%d %d", a/60, a%60);
return 0;
}
산술연산자 + - * / %
printf("%d",a+b); // 100 or 50 or -60 ....
비교연산자 < > <= >= == !=
1. 비교연산의 결과는 1(true) 또는 0(false)으로 나온다
printf("%d",a>b); // 1 or 0
2. <= >= !=
a>=b (o)
a=>b (x) 문법상의 오류!! 컴퓨터가!!못알아들음
3. = vs ==
printf("%d",10==7); //10과 7이 같은거에 대해서 대답을 해주세요~~ (물어보는)
10=7; //대입 . 10은 이제부터 7이야. (명령)
a=10; (대입)
a==10 (비교)
*******************두 수를 비교하고 싶다면?? =을 두 번!!!써줘야한다!!!!******************
*/
/*
#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()
{
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;
}
논리연산자 ! && ||
논리값(1또는0)으로만 연산
1. ! not 아니다
!1 -> 0
!0 -> 1
printf("%d",!a);
2. && 그리고 and
a>10 && b<10 -> 1 or 0
a b a&&b
0 0 0
0 1 0
1 0 0
1 1 1
3. || 또는 or
a>10 || b<10 -> 1 or 0
a b a||b
0 0 0
0 1 1
1 0 1
1 1 1
*/
/*
#include <stdio.h>
int main()
{
int a;
scanf("%d", &a);
printf("%d", !a);
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()
{
int a, b;
scanf("%d %d", &a, &b);
printf("%d", a>b?a:b);
return 0;
}
*/
#include <stdio.h>
int main()
{
int a, b, c, d;
scanf("%d %d %d", &a, &b, &c);
d = a<b?a:b;
printf("%d",d<c?d:c);
return 0;
}