#include
using namespace std;
int main() {
int startingF , endingF , gap;
cin>>startingF;
cin>>endingF;
cin>>gap;
int i=startingF;
while(i<=endingF)
{
int cel = (i-32)*(0.55);
cout<< i <<" "<< cel <<endl;
i=i+gap;
}
return 0;
}
I don’t know why this code is not passing any testcases because its working fine when i am trying with Custom input. Please help!
