aboutsummaryrefslogtreecommitdiff
path: root/week01/exercise03.cpp
blob: bb08592bf3f17b79e7953fa914a85fa6acc83677 (plain) (blame)
1
2
3
4
5
6
7
#include <iostream>

int main() {
	int fahrenheit;
	std::cin >> fahrenheit;
	std::cout << ((fahrenheit - 32) * 5 / 9);
}