|
Вернуться
| 1 Неизвестный, 07 октября 2022 г. 10:01:35 | |
|
a,b,c=map(int,input().split())
|
|
|
| 2 Витя Андрей Лёша, 07 октября 2022 г. 8:50:59 | |
a = int(input()) s = str(a) print('YES' if s == s[::-1] and 10000 > a > 999 else 'NO')
|
|
|
| 3 Хофтицер Кенджи, 07 октября 2022 г. 7:14:29 | |
#include <iostream> using namespace std; int main(){ int c,h,o; cin>>c>>h>>o; if(c/2>0 && h/6>0 && o/1>0){ cout<<min(min(h/6,o/1),c/2); }else{cout<<0;} return 0; }
|
|
|
Чтобы оставить сообщение необходимо зарегистрироваться и авторизоваться!
| |