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