#include <stdio.h>
#include <stdlib.h>
int main(void) 
{
	int W;
	scanf("%d",&W);
	
	W>90 ? (printf("體重過重")) : (printf("無過重"));
	
	return 0;
}
