///--------- 숙제 수정본 ---------
/*
#include<stdio.h>
int main()
{
int x, y;
scanf("%d %d", &x, &y);
printf("%d", x/y);
return 0;
}
// 두 정수의 몫을 구하는 코드
*/
///---------- 2022 10 22 ----------
/*
#include<stdio.h>
int main()
{
int m, e;
scanf("%d %d", &m, &e);
printf("%d", m%e);
return 0;
}
// 두 정수의 나머지를 구하는 코드
// 해당 코드로는 음수 불가능
*/
/*
#include<stdio.h>
int main()
{
int qustn;
scanf("%d", &qustn);
printf("%lld", (long long int)qustn+1);
return 0;
}
//입력된 정수 한개에 1을 더하는 코드
*/
/*
#include<stdio.h>
int main()
{
int a, b;
scanf("%d %d", &a, &b);
printf("%d\n%", a+b);
printf("%d\n%", a-b);
printf("%d\n%", a*b);
printf("%d\n%", a/b);
printf("%d\n%", a%b);
printf("%.2f", (float)a/b);
return 0;
}
//정수 2개의 합, 차, 곱, 몫, 나머지, 나눈 값을 순서대로 계산하는 코드
///%.nf 입력 시 n의 수 만큼만 소숫점 이하 숫자를 출력(2 입력시 0.00까지)
*/
/*
#include<stdio.h>
int main()
{
int a, b, c;
scanf("%d %d %d", &a, &b, &c);
printf("%d\n", a+b+c);
printf("%.1f", (float)(a+b+c)/3);
return 0;
}
//정수 3개의 합과 평균을 출력하는 코드
*/
///--------- 비교 연산 ----------
#include<stdio.h>
int main() {
int x, y;
scanf("%d %d", &x, &y);
// a > b:::::: > >= < <= == !=
printf("%d", x > y);
// true : 1
// false: 0
return 0;
}



