#include <cstdio>
#include <iostream>
using namespace std;
int main(){
int n;
cin>>n;
int foot = n/0.3048/100;
int inch = (n/0.3048/100 - foot)*12;
cout<<foot<<" "<<inch<<endl;
return 0;
}
7-1 厘米换算英尺英寸 (15 分)
最新推荐文章于 2022-11-19 14:55:43 发布