Join the growing community of curious minds on IDNLearn.com and get the answers you need. Our platform provides prompt, accurate answers from experts ready to assist you with any question you may have.

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 }