#include <stdio.h>
double main() {
int score;
scanf("%d", &score);
if (score <= 50.80){
printf("Flyweight \n");
}
else if (score <= 61.23){
printf("Lightweight \n");
}
else if (score <= 72.57){
printf("Middleweight\n");
}
else if (score <= 88.45){
printf("Cruiserweight\n");
}
else if (score >= 88.45){
printf("Heavyweight\n");
}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: