关于##include#的问题,如何解决?

#include
int main(void)
{
int a;
scanf("%d",&a);
int foot,inch;
foot = a/0.3048/100/13;
inch = foot * 12;
printf("%d %d",foot,inch);
return 0;
}
如果已知英制长度的英尺foot和英寸inch的值,那么对应的米是(foot+inch/12)×0.3048。现在,如果用户输入的是厘米数,那么对应英制长度的英尺和英寸是多少呢?别忘了1英尺等于12英寸。

输入格式:
输入在一行中给出1个正整数,单位是厘米。

输出格式:
在一行中输出这个厘米数对应英制长度的英尺和英寸的整数值,中间用空格分开。

#include <stdio.h>

int main()
{
    int n;
    scanf("%d", &n);
    int foot = n / 30.48;
    int inch = (n / 30.48 - foot) *12;
    printf("%d %d", foot, inch);
    return 0;
}