#include <iostream>
using namespace std;

int main() {
	int a = 22;
    int (b) = 33;
    
    cout << a << '\n' << b;
	return 0;
}