/*
#include <stdio.h>
int main()
{
printf("Hello world!\n");
return 0;
}
0048 ~ 0054
*/
/*
#include<stdio.h>
int main()
{
int t,y;
scanf("%d %d",&t,&y);
printf("%d",t>y);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
int u,i;
scanf("%d %d",&u,&i);
printf("%d",u==i);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
int u,i;
scanf("%d %d",&u,&i);
printf("%d",u<=i);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
int u,j;
scanf("%d %d",&u,&j);
printf("%d",u!=j);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
int p;
scanf("%d",&p);
printf("%d",!p);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
int o,i;
scanf("%d %d",&o,&i);
printf("%d",o&&i);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
int o,i;
scanf("%d %d",&o,&i);
printf("%d",o||i);
return 0;
}
0062 0063
삼항연산자
a+b
!a
조건식 : 결과가 1또는 0으로 나오는 식
( 조건식 ) ? ( ) : ( )
printf("%d", 123>456 ? 50 : 100); // 100
int a, b, c;
c = a>b ? a : b; //a, b 둘 중 큰 수
c = a<b ? a : b; //a, b, 둘 중 작은 수
*/
/*
#include<stdio.h>
int main()
{
int i,o;
scanf("%d %d",&i,&o);
printf("%d",i>o ? i:o);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
int i,p,o,j;
scanf("%d %d %d",&i,&p,&o);
j = i<p ? i:p;
printf("%d",j<o? j:o);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
int j,k,l;
scanf("%d %d %d",&j,&k,&l);
printf("%d\n%.1f",j+k+l,(float)(j+k+l)/3);
return 0;
}
*/