#include <iostream>
using namespace std;
enum cat
{
temp = 6
};
int main()
{
int age = 12;
age /= temp;
cout << "If you were cat, you would be " << age << endl;
return 0;
}
#include <iostream>
using namespace std;
enum cat
{
temp = 6
};
int main()
{
int age = 12;
age /= temp;
cout << "If you were cat, you would be " << age << endl;
return 0;
}