#include <stdio.h>

/*
 *  Table of Celsius and equivalent Fahrenheit temperature
 */
int main() {
  float fahr, celsius;
  int lower, upper, step;

  lower = 0;
  upper = 200;
  step = 10;
  celsius = lower;

  printf("\tC\tF\t\n");
  printf("\t---------------\n");

  while (celsius < upper) {
	fahr = ((9.0/5.0) * celsius) + 32.0;
	printf("\t%.0f \t%3.2f\n", celsius, fahr);
	celsius = celsius + step;
  }
  return 0;
}