//Conrad Taylor                        CSC5               Chapter 4, P. 220, #6
//
/*******************************************************************************
 * Mass to newtons Converter
 * _____________________________________________________________________________
 * This program takes the height and width of two triangles, calculates the area
 * and tells the user which rectangle is the largest or if they are the same. 
 * _____________________________________________________________________________
 * INPUT
 * weight
 * mass
 * 
 * 
 * OUTPUT
 * too heavy
 * too light
 * neither
 
 ******************************************************************************/

#include <iostream>
using namespace std;

int main() {
	
	    
        
    float weight, 
          mass;

    
    cout << endl;
    cout << "What is the object's mass: ";
    cin >> mass;

    
    weight = mass * 9.8;


    cout << "\nObject's weight = ";
    cout << weight << endl << endl;

    
    if (weight >= 1000)
        cout << "Too heavy.";
    else if (weight <= 10)
        cout << "Too light.";
    else
        cout << "Neither heavy or light.";

    cout << endl << endl;
    
    return 0;
}