#include<iostream>
#include<stdlib.h>
#include<time.h>
using namespace std;
main(){
setlocale(LC_ALL,"Turkish"); //Türkçe karakter
int rnd,s1,s2;
cout<<"1. Sayı : ";
cin>>s1;
cout<<"2. Sayı : ";
cin>>s2;
srand(time(NULL));
rnd=s1+rand()%(s2-s1);
cout<<rnd<<endl;
}