#include <stdio.h>

int main() {

    int Weight = 80;
    double Moon;

    Moon = Weight*0.17;

    printf("무게 : %dkg\n", Weight);
    printf("달에서의 무게 : %.6fkg\n", Moon);

    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: