#include <iostream.h>
main ( ) {
  int change;
  cin >> change;
  change == 1 ? cout << "The temperature has changed by "
                     << change << " degree." << endl
              : cout << "The temperature has changed by "
                     << change << " degrees." << endl;
}
