/***************************************************
Print a line of n *'s
Write a program that reads in a number n from the
user and prints out a line of n *'s.
***************************************************/
#include <iostream>
#include <string>
using namespace std;
int main()
{
// Read n
int n;
cout << "Enter integer n: ";
cin >> n;
// Write *'s
for(int i = 0; i < n; i++)
{
cout << '*';
}
// Finish with new line
cout << endl;
return 0;
}