#include<stdio.h>int main(){ int x; if(30 < x < 40) { printf("win"); } else if( 60 < x < 70 ) { printf("win"); } else { printf("lose"); } return 0;}