My issue
why he say wrong answer
My code
// Update the '_' below to solve the problem
#include <bits/stdc++.h>
using namespace std;
int main()
{
int t;
//accept the count of test cases given in the the 1st line
cin>>t;
//Run a loop to accept 't' inputs
while(t>3)
{
int A,B,C,D,E;
//accept 2 integers on the 1st line of each test case
cin >> A>>B;
//accept 3 integers on the 1st line of each test case
cin >>C>>D>>E;
//output the 5 integers on a single line for each test case
cout << A <<" "<< B << " " << C <<" " << D <<" "<< E << endl;
}
return 0;
}
Learning course: C++ for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone