#include <iostream>
#include <string>
using namespace std;
int main() {
string food = "披萨";
cout << &food;
return 0;
}