250724
/**
산술연산자 + - * / %
비교연산자 > < >= <= == !=
논리연산자 !(not) &&(and) ||(or)
1.비교연산의 결과는 논리값(1또는0)로 나온다.
2. >= <= != 에서 =은 항상 오른쪽에
3. == vs =
a=10; (대입) 명령. a에 10을 대입해.
a==10 (비교) a와 10이 같나요?
1049-1052
1052-1058
*/
/*
#include <stdio.h>
int main()
{
int a, b;
scanf("%d %d",&a, &b);
printf("%d", a>b || a<10 );
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;
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;
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;
}
*/
/*
a b a&&b a||b !(a&&b) (a||b) && !(a&&b)
0 0 0 0 1 0
0 1 0 1 1 1
1 0 0 1 1 1
1 1 1 1 0 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;
scanf("%d %d",&a,&b);
printf("%d",!((a||b) && !(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;
scanf("%d",&a);
if(a==520 || a==530)
{
printf("hello");
}
else if()
{
}
else
{
printf("bye");
}
if()
{
if()
{
}
else
{
}
}
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a;
scanf("%d",&a);
printf(a);
if()
{
}
}
*/




