#include<iostream>
using namespace std;
int main()
{
    char a[]='shan';
    int b=30;
    ++b;
    cout<<a<<":"<<b;
    return 0;
    
}