#include <iostream>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
using namespace std;
string nom;
int i,e;
unsigned long int y;
int main(){
cout<<"Tu nombre es:"<<endl;
cin>>nom;
system("clear");
cout<<"Bienvenido "<<nom<<" !"<<endl;
cout<<"Especifica tu edad"<<endl;
cin>>e;
system("clear");
cout<<"Segun tu edad, te encuentras en la categoria de: "<<endl; //Para las categorias debo hacer unos cuantos ifs
system("pause");
return 0;
}