/* City.c */
#include <stdio.h>

main()
{
 char city_name[80];
 unsigned long population;

 printf("What is the name of your city or town? ");
 gets(city_name);
 printf("%s is the name of your city.\n", city_name);

 printf("What is the population of the city or town? ");
 scanf("%lu", &population);
 printf("%s has a population of %lu.\n", city_name, population);

 return 0;
}

