Toggle navigation
YouTube
Facebook
Telegram
english
english
українська
Algotester 4.3
Build 496
2024-10-17
Log In
Contact Us
College
Sponsors
Donate
Sources
C++ 17
#include <iostream> using namespace std; int main() { int n; cin >> n; while (n > 10) { if (n % 100 == 47) { cout << "YES\n"; return 0; } n /= 10; } cout << "NO\n"; }