#include <stdio.h>
int main()
{
int cigarette, day, year, total, hour, month, age;
cigarette = 2;//한가치에 2분
day = cigarette * 20; //하루에 한갑
year = day * 365; //365일 핀 담배량
total = year * 20; //20년동안 핀 담배량
age = 365-(total/60/24);
printf("수명은 100살까지이고 20살부터 20년동안 담배를 하루에 한갑을 핀다고 가정하였을때\n\n");
printf("단축된 수명 분량 : %d분\n", total);
printf("단축된 수명 시간량 : %d시간\n", total/60);
printf("단축된 수명 일 : %d일\n", total/60/24);
printf("살수 있는 수명 : 99살 %d일\n", age);
printf("살수 있는 수명 : 99살 %d달 %d일\n", age/30, age%30);
return 0;
}