/*
 * Lab 2 
 * Formatting output
 * Using variables
 *
 */

#include <iostream>
using namespace std;

int main() {
  int num1 = 5;
  char letter = 'a';

  //PART 1
  
  cout << "1\n";
  cout << "\t2\n";
  cout << "\t\t3\n";
  cout << "\t\t\t4\n";
  cout << "\t\t\t\t5\n";
  
  cout << "\n\n";

  //PART 2 -- see above for declaration/assignment of num1

  cout << num1*1 << "\n";
  cout << "\t" << num1*2 << "\n";
  cout << "\t\t" << num1*3 << "\n";
  cout << "\t\t\t" << num1*4 << "\n";
  cout << "\t\t\t\t" << num1*5 << "\n";
  
  cout << "\n\n";

  //PART 3 -- see above for declaration/assignment of letter

  cout << "V" << letter << "ri" << letter << "ble, " << "letter,"
       << "now holds the v" << letter << "lue, '" << letter << "'\n";

  cout << "\n\n";

  return 0;
}
