Ответ:
Написал программу на двух языках: C++ и Python
С++
#include <iostream>
using namespace std;
int main()
{
int N, a, b, c;
cin>>N;
a = N % 10;
b = (N / 10) % 10;
c = N/100;
if(a+b+c<99 and a+b+c>9)
cout<<"YES";
else
cout<<"NO";
}
Python
N = int(input())
a = N % 10
b = (N // 10) % 10
c = N // 100
if (a+b+c<99 and a+b+c>9):
print("YES")
else:
print("NO")
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Написал программу на двух языках: C++ и Python
С++
#include <iostream>
using namespace std;
int main()
{
int N, a, b, c;
cin>>N;
a = N % 10;
b = (N / 10) % 10;
c = N/100;
if(a+b+c<99 and a+b+c>9)
cout<<"YES";
else
cout<<"NO";
}
Python
N = int(input())
a = N % 10
b = (N // 10) % 10
c = N // 100
if (a+b+c<99 and a+b+c>9):
print("YES")
else:
print("NO")