My some test cases fails please help

#include
using namespace std;
/*
c=(5(f-32))/9
/
void converter(int initial,int max,int step){
for(int i=initial; i<=max; i=i+step){
int c=(5
i-5*32)/9;
cout<<i<<"\t"<<c<<endl;
}
}

int main() {
int initial,max,step;
cin>>initial>>max>>step;

//print farehnheit to celcius table
cout<<"F"<<"\t"<<"C"<<endl;
converter(initial,max,step);

return 0;

}

@thakur0_0 ok let me see

@thakur0_0
cout<<ā€œFā€<<"\t"<<ā€œCā€<<endl;
remove this line its not req in the output
i hope its cleared now if yes dont forget to mark the doubt resolved :smiley: