#include<iostream.h>
void main()
{
char a[30]="Super";
for(int c=0; c<7; c++) cout << a[c];
}