14 lines
206 B
C++
Raw Normal View History

2021-02-19 12:06:26 -05:00
#include <iostream>
using namespace std;
int main() {
/* Type your code here. */
int totalInches;
cin >> totalInches;
cout << totalInches/12 << "'" << totalInches%12 << endl;
return 0;
}