#include <iostream>
#include <vector>
#include <algorithm>
#include <cstdint>
#include <cstdio>
#define ll long long

using namespace std;

int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(0);
	int n, s, f;
	int64_t l1, l2, l3, c1, c2, c3, x, sub = 0;
	//cin >> l1 >> l2 >> l3 >> c1 >> c2 >> c3 >> n >> s >> f;
	scanf("%I64d %I64d %I64d %I64d %I64d %I64d %d %d %d", &l1, &l2, &l3, &c1, &c2, &c3, &n, &s, &f);
	cout << "l1 = " << l1 << " & l2 = " << l2 << " & l3 = " << l3;
	return 0;
}