#include<bits/stdc++.h>
using namespace std;
int main()
{
int minf,maxf;
int step,f;
double c;
cin>>minf>>maxf>>step;
for(f=minf;f<=maxf;f=f+step)
{
c=(((f-32)*5)/9);
cout<<f<<" "<<c<<endl;
}
return 0;
}
why my code is not get submitted ?
