eolymp
bolt
Try our new interface for solving problems
Problems

Each condition of two

published at 1/13/24, 5:24:42 pm

include <bits/stdc++.h>

define ll long long

using namespace std; int main() { ll n; cin>>n; n=abs(n); if(n%6==0 and n>=10 and n<=99) { cout<<"YES"<<endl; } else { cout<<"NO"<<endl; } return 0; }