summaryrefslogtreecommitdiff
path: root/BlankConsoleLab/BlankConsoleLab.cpp
blob: 7deb81dc202b0fab099e23ddf9929ee314d59aff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// CST 116, Lab 1 - Alexandra Apetroaei


#include <iostream>

using namespace std;

using std::cout;
using std::cin;
using std::endl;

int main()
{
    int height = 0;
    int width = 0;


    cout << "Insert the width: ";
    cin >> height;

    cout << "Insert height: ";
    cin >> width; 

   
}