#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
int n,k,m;
cout<<„N=“;
cin>>n;
cout<<„K=“;
cin>>k;
cout<<„M=“;
cin>>m;
if(k>=n)
cout<<„STANICA 1: „<<k-n<<endl;
else cout<<„STANICA 1: ZAKASNIT CE“<<endl;
if(k+m>=n) cout<<„STANICA 2: „<<k+m-n<<endl;
else cout<<„STANICA 2: ZAKASNIT CE“<<endl;
cout<<endl;
system(„PAUSE“);
return EXIT_SUCCESS; }