// CS2 Chung: testing assert #include #include void main() { int n; cout << "Enter a positive number: "; cin >> n; assert(n >= 0); }