#include <iostream>
using namespace std;
int main() {
string txt = "We are the so-called \"Vikings\" from the north.";
cout << txt;
return 0;
}