/*
#include <stdio.h>
int main()
{
float a, b;
scanf("%f %f", &a, &b);
printf("%.2f",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("%lld",(long long int)a+1);
return 0;
}
산술연산자
+ - * / %
printf("%d",a+b);
비교연산자
> < >= <= == !=
1. 비교연산의 결과는 1 or 0으로 출력
printf("%d",a>b); // 1 or 0
a가 b보다 크니?? 네 아니요 true or false
2. >= <= =을 오른쪽에
printf("%d",a>=b); //a가 b보다 크거나 같니? (o)
printf("%d",a=>b); //xxxxxxxx컴퓨터가 못알아들음!!
3.
같니? ==
대입 =
a=1; //a는 이제부터 1이야
a==1 // a가 1과 같니?
printf("%d",a!=b);
ex1)
a=1 b=5
a!=b true 1
a=0 b=0
a!=b false 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 m,n;
scanf("%d %d", &m, &n);
printf("%d", m!=n);
}
*/



