14 lines
206 B
C++

#include <iostream>
using namespace std;
int main() {
/* Type your code here. */
int totalInches;
cin >> totalInches;
cout << totalInches/12 << "'" << totalInches%12 << endl;
return 0;
}