/
hanglider
/
ACMP_solutions
Обзор
Документация
Войти
/
hanglider
/
ACMP_solutions
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
052.cpp
17 строк
348 B
hanglider
[]
07 апр 2024, 17:03
07 апр 2024, 17:03
e0e0af3
Код
Авторство
О чём код?
#include <iostream> #include <iomanip> using namespace std; int main() { freopen ("input.txt","r",stdin); freopen ("output.txt","w",stdout); char a,b,c,x,y,z; cin.get(a); cin.get(b); cin.get(c); cin.get(x); cin.get(y); cin.get(z); if ((a+b+c)==(x+y+z)) cout << "YES"; else cout << "NO"; }