N = int(input())
a = N//10
b = N%10
if a+b == 7:
print('YES')
else:
print('NO')
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
N = int(input())
a = N//10
b = N%10
if a+b == 7:
print('YES')
else:
print('NO')