#include <stdio.h>
int main(int argc, const char * argv[]) {
// insert code here...
printf("Hello, World!\n");
float weigth;
weigth = 23.3;
printf("The furkey weight is: %f, \n", weigth);
float cookingtime;
cookingtime = 15.0 + 15.0 * weigth;
printf("Cook it for %f minutes. \n", cookingtime);
float a = 23;
float b = 43;
float c = a + b;
printf("The c's value is %f, \n", c);
return 0;
}