Untitled

mail@pastecode.io avatar
unknown
plain_text
7 months ago
2.0 kB
14
Indexable
Never
#include <bits/stdc++.h>
using namespace std;

vector<int> bytes = vector<int>({125, 41, 59, 10, 10, 105, 110, 116, 32, 109, 97, 105, 110, 40, 41, 32, 123, 10, 9, 99, 111, 117, 116, 32, 60, 60, 32, 34, 35, 105, 110, 99, 108, 117, 100, 101, 32, 60, 98, 105, 116, 115, 47, 115, 116, 100, 99, 43, 43, 46, 104, 62, 34, 32, 60, 60, 32, 101, 110, 100, 108, 59, 10, 9, 99, 111, 117, 116, 32, 60, 60, 32, 34, 117, 115, 105, 110, 103, 32, 110, 97, 109, 101, 115, 112, 97, 99, 101, 32, 115, 116, 100, 59, 34, 32, 60, 60, 32, 101, 110, 100, 108, 32, 60, 60, 32, 101, 110, 100, 108, 59, 10, 9, 99, 111, 117, 116, 32, 60, 60, 32, 34, 118, 101, 99, 116, 111, 114, 60, 105, 110, 116, 62, 32, 98, 121, 116, 101, 115, 32, 61, 32, 118, 101, 99, 116, 111, 114, 60, 105, 110, 116, 62, 40, 123, 34, 59, 10, 9, 102, 111, 114, 40, 105, 110, 116, 32, 105, 32, 61, 32, 48, 59, 32, 105, 32, 60, 32, 98, 121, 116, 101, 115, 46, 115, 105, 122, 101, 40, 41, 59, 32, 105, 43, 43, 41, 32, 123, 10, 9, 9, 99, 111, 117, 116, 32, 60, 60, 32, 98, 121, 116, 101, 115, 91, 105, 93, 32, 60, 60, 32, 34, 44, 32, 34, 59, 10, 9, 125, 10, 9, 102, 111, 114, 40, 105, 110, 116, 32, 105, 32, 61, 32, 48, 59, 32, 105, 32, 60, 32, 98, 121, 116, 101, 115, 46, 115, 105, 122, 101, 40, 41, 59, 32, 105, 43, 43, 41, 32, 123, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 99, 111, 117, 116, 32, 60, 60, 32, 40, 99, 104, 97, 114, 41, 32, 98, 121, 116, 101, 115, 91, 105, 93, 59, 10, 32, 32, 32, 32, 32, 32, 32, 32, 125, 10, 32, 32, 32, 32, 32, 32, 32, 32, 99, 111, 117, 116, 32, 60, 60, 32, 34, 92, 110, 34, 59, 10, 9, 114, 101, 116, 117, 114, 110, 32, 48, 59, 10, 125, });

int main() {
	cout << "#include <bits/stdc++.h>" << endl;
	cout << "using namespace std;" << endl << endl;
	cout << "vector<int> bytes = vector<int>({";
	for(int i = 0; i < bytes.size(); i++) {
		cout << bytes[i] << ", ";
	}
	for(int i = 0; i < bytes.size(); i++) {
                cout << (char) bytes[i];
        }
        cout << "\n";
	return 0;
}
Leave a Comment