#include<iostream>
#include<string>
using namespace std;
struct student
{
string x;
int t;
};
int main()
{
int n;
cin>>n;
struct student allstu[n];
for(int i=0;i<n;i++)
{
cin>>allstu[i].x;
cin>>allstu[i].t;
}
for(int j=0;j<n;j++)
{
cout<<allstu[j].x<<"->"<<allstu[j].t<<endl;
}
return 0;
}