/*#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Hello world!\n");
return 0;
}
#include<stdio.h>
int main()
{
int a;
scanf("%d", &a);
if(a>0){
printf("양수");
}
else if(a<0){
printf("음수");
}
else if(a==0){
printf("0");
}
return 0;
}
#include <stdio.h>
int main ()
{
double a,b, c, d;
scanf("%lf %lf",&a,&b);
c = (a - 100) * 0.9;
d = (b - c) * 100 / c;
if(d <= 10) {
printf("정상");
}
else if(d>10 && d<= 20) {
printf("과체중");
}
else {
printf("비만");
}
return 0;
}
*/
#include<stdio.h>
int main()
{
double h, w; // 키, 몸무게
double s, v; // 표준몸무게, 비만도
scanf("%lf %lf", &h, &w);
if( ) {
s =
}
else if() {
s~~~~
}
v = ~~~~;
if() {
}
else if() {
}
else if() {
}
else {
}
return 0;
}