Untitled
unknown
plain_text
10 months ago
254 B
14
Indexable
#include <iostream>
using namespace std;
int main()
{
int a,b,x;
cin >> a >> b >> x ;
if(a <= x <= b)
{
cout << "DA" << " ";
}
else
{
cout << "NU" << " ";
}
return 0;
}
Editor is loading...
Leave a Comment