Looking for answers? Westonci.ca is your go-to Q&A platform, offering quick, trustworthy responses from a community of experts. Join our platform to connect with experts ready to provide precise answers to your questions in various areas. Get precise and detailed answers to your questions from a knowledgeable community of experts on our Q&A platform.

Use din to read integers from input until-90 is read. For each remaining integer read before-90
If the integer is less than or equal to 400, output "Request accepted".
Otherwise, output "Amount exceeded coverage"
End each output with a newline.
Ex: If the input is 397 380 406 -90, then the output is
Request accepted
Request accepted
Amount exceeded coverage
1 #include
2 using namespace std;
3
4 int main() {
5
6 Your code goes here
7
8 return 0;
9 }