皎月半洒花
2019-08-09 20:53:09
其实是一道水题,以下是证明:
求证
我们把和式展开成为:
这个东西是+
连接说明应有
而因为本题的坑点在于选的是连续子序列
,所以只需要
#include <cstdio>
#include <iostream>
#define LL long long
using namespace std ;
LL N, M ;
int main(){
cin >> N >> M ;
if (M > N) puts("NO") ; else puts("YES") ;
}