#include #include int main() { char input[20]; int age; float height; printf("Enter your age in years:"); scanf("%d",&age); age = age * 12; printf("Enter your height in inches:"); scanf("%f",&height); height = height * 2.2; printf("You are %d months old\n",age); printf("and %f centimeters tall.\n",height); return(0); }