题解 | #牛牛的计划#
牛牛的计划
https://www.nowcoder.com/practice/cf956ceef9f84f7393a0b7284fdbf95a
#include <stdio.h>
int main() {
int a, b, c = 0;
int j, k, l;
scanf("%d %d %d\n",&a,&b,&c);
scanf("%d %d %d",&j,&k,&l);
if(a<j||(a==j&&b<k)||(a==j&&b==k&&c<=l))
printf("yes");
else printf("no");
return 0;
}