#include <iostream>
using namespace std;

int main() {
	double withdrew;
  cout << "How much did you withdraw this month? ";
    cin >> withdrew;
    while (withdrew < 0) {
        cout << "Invalid amount! Please enter a positive withdrawal: ";
        cin >> withdrew;
    }	return 0;
}