一本通1045

//qf
#include <bits/stdc++.h>
#define f(i,j,n) for(register int i=j;i<=n;i++)
using namespace std;
typedef long long ll;
inline ll read() {
	ll x=0;
	int f=1;
	char ch=getchar();
	while(!isdigit(ch)) {
		if(ch=='-') f=-1;
		ch=getchar();
	}
	while(isdigit(ch)) x=(x<<1)+(x<<3)+(ch-48),ch=getchar();
	return x*f;
}
signed main() {
	puts((read()>=10 or read()>=20)?"1":"0");
	return 0;
} 

 

posted @ 2019-01-03 11:59  Isaunoya  阅读(184)  评论(0编辑  收藏  举报
TOP