problem trying to put the answere in the correct test case.
hello, everyone. I need some help, because I solve the first problem from c++ transport , but the results are thaken together in the first part of the test, I try to separate them but then appears the first result in first one and in the second spaceand I can not put them apart. thank you sorry for my english and, I hope you can understand what i am trying to ask. The results appears together, or the first one in both spaces and put me its wrong. I dont know how to separate the anweres in the exercise to obteint the 2 parts completed ok #include<iostream> using namespace std; int main(){ int passengers1=12; int pass2=231; int leftpassengers1=passengers1%50; int emptyseats1=50-leftpassengers1; cout<<emptyseats1<<endl; int leftpassengers2=pass2%50; int emptys2=50-leftpassengers2; cout<<emptys2<<end1; return0; }