//Berezvai Dániel
//BEDTACI.ELTE

//Specifikáció:
//be: a,b: int | ef: a,b>0
//ki: c: int   | uf:c=a+b
#include <iostream>
using namespace std;
int main(){
	cout<<"Osszeadas"<<endl;

	int a;
	do{
		cout<<"Kerem az elso szamot:   ";
		cin>>a;
	}while(a<=0||a>9999);

	int b;
	do{
		cout<<"Kerem a masodik szamot: ";
		cin>>b;
	}while(b<=0||b>9999);

	int c=a+b;
	cout<<"A megoldas:             "<<c<<endl;;

	return 0;
}
/* * /
*/
//asdf
/*
/* */
