#include<iostream>
#include <cstdlib>
#include<string>
using namespace std;
void main()
{
int my_age=20;int RandomNumber=0;
string name="HanLonglong";
cout<<"My name is "<<name<<endl;
cout<<"I am"<<my_age<<"years old."<<endl;
int s=rand()%3+1;
cout<<"I guess"<<s<<endl;
}
#include <cstdlib>
#include<string>
using namespace std;
void main()
{
int my_age=20;int RandomNumber=0;
string name="HanLonglong";
cout<<"My name is "<<name<<endl;
cout<<"I am"<<my_age<<"years old."<<endl;
int s=rand()%3+1;
cout<<"I guess"<<s<<endl;
}