MyOnAsSalat

Untitled

Sep 29th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3. namespace ConsoleTest
  4. {
  5. public class Program
  6. {
  7. public static void Main()
  8. {
  9. string s = Console.ReadLine();
  10. var a = s.ToCharArray().Where(x => x == '7' || x == '4').ToArray().Length.ToString().ToCharArray();
  11. Console.WriteLine(a.Where(x => x != '7' && x != '4').ToArray().Length == a.Length ? "NO" : "YES");
  12. }
  13. }
  14. }
Add Comment
Please, Sign In to add comment