#include
using namespace std;
int main() {
float min_value;
float max_value;
cin>>min_value>>max_value;
int step;
cin>>step;
int c;
float f = 0;
while(f<=max_value)
{
c = (5*(f-32))/9;
cout<<f<<" "<<c<<endl;
step+=20;
}
return 0;
} this is the code ,it is getting compiled and providing the result also,but the testcases are not getting passes.