hey guys i was bored but yeah i made this program cause i dont have much skill and i wanted something to do.

Code:
#include <iostream>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

using namespace std;

int main()
{
int months, weeks, days, age;

cout<<"hey how old are you?\n";
cin>>age;
months = age*12;
weeks = age*52;
days = age*365;
cout<<"You are "<<months<<" months old, or "<<weeks<<" weeks old, or "<<days<<" days old! wow\n";
    system("pause");
    return 0;
}