#include
using namespace std;
int main(){
int f = 0;
int c;
while (f<=300){
c = (5*(f - 32))/9;
f = f + 20;
cout<<f<<" "<<c <<endl;
}
return 0;
}
#include
using namespace std;
int main(){
int f = 0;
int c;
while (f<=300){
c = (5*(f - 32))/9;
f = f + 20;
cout<<f<<" "<<c <<endl;
}
return 0;
}