// Lab 2 Practice 2 // Write code that takes the number of pounds the user // can lift (use cin), divides that number by 2.20462, and then // prints it to the screen. This will convert pounds to kg. // (200 pounds is equal to 90.7186 kilograms) #include using namespace std; int main() { cout << "Do you even lift bro?" << endl; // write your code here return 0; }