/*
#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",b>=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,c;
scanf("%d %d %d",&a,&b,&c);
printf("%.2f",(float)(a+b+c)/3);
return 0;
}
700
*/
/*
#include <stdio.h>
int main()
{
int a;
scanf("%d",&a);
printf("%d %d",a/60,a%60);
return 0;
}
산술연산자 + - * / %
비교연산자 > < >= <= == !=
논리값 0 or 1
논리연산자 ! && ||
! not
!1 0
!0 1
printf("%d",!a);
그리고 &&
a&&b a 그리고 b가 1일때 1
printf("%d",a&&b);
a b
0 0 0
1 0 0
0 1 0
1 1 1
또는 ||
a||b a 또는 b가 1일때 1
printf("%d",a||b);
a b
0 0 0
0 1 1
1 0 1
1 1 1
*/
/*
#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;
scanf("%d",&a);
printf("%d",!a);
return 0;
}
삼항연산자
( 조건식 ) ? ( 조건식이 참일때의값 ) : ( 거짓일때의값 )
조건식은 결과가 참 또는 거짓
printf("%d", 123>456 ? 90 : 70);
printf("%d", a>b ? a : b);
a가 더 크면 a , 아니면 b
a, b 둘 중 큰 수
printf("%d", a<b ? a: b);
a가 더 작으면 a, 아니면, b
a, b 둘 중 작은 수
*/
/*
#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;
}
#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;
}
*/



