Write a program that allows user input of two numbers the R
     Write a program that allows user input of two numbers - the Radius of a Circle and the Cost of Railing Material per Foot. Remember, you should always output to the user in textual form what is expected for keyboard entry. The program is designed to calculate the cost to surround a specified circle with a fence. The program should return both the circumference of the circle and total price/cost of the material to surround the specified circle.  Make sure you have appropriate comments and output to explain the program\'s function. After completion and testing, zip the folder and submit via the Assignments link in BlackBoard. You should browse and attach the folder via the browse my computer button and then select the submit button.  The final date/time to submit assignments in this folder is Friday, February 10th at midnight. 
  
  Solution
#include <iostream> //header file for cout and cin
 using namespace std;
int main()
 {
int radius,price;              //variable to store values
 cout<<\"Enter radius= \";
 cin>>radius;                //taking value of radius from user
 cout<<\"\ Enter price= \";
 cin>>price;                   //taking value of price from user
 int circumference=2*3.14*radius;       //calculating circumference
 cout<<\"\ Circumference=\"<<circumference; //output print
 cout<<\"\ Total Price=\"<<circumference*price; //out price print
 }

