My issue
why not getting the correct ans with n and 0
My code
#include <iostream>
using namespace std;
int main() {
int test;
cin>>test;
while(test--){
int n;
cin>>n;
cout<<0<<" "<<n<<endl;
}
// your code goes here
return 0;
}
Problem Link: DUPLET Problem - CodeChef