// Lab02.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include "longint.h"

int main()
{
	longint x, y, z;
	cin >> x;
	cin >> y;
	z = x + y;
	cout << z << endl;
}

