#include int main() { int age; float distance; age = 27; distance = 319.125; printf("The alien is %d years old and\n",age); printf("comes from a planet %f microns away!\n",distance); return(0); }