Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Бин числа
- n = int(input())
- if n != 0:
- while (n % 2 == 0):
- n = n / 2
- if int(n) == 1:
- print('YES')
- else:
- print('NO')
- Неглухой телефон
- a= int(input())
- print(a)
- A+B
- a, b = map(int, input().split())
- print(a+b)
- Бисер
- a = int(input())
- print(a+1)
- Олимпиада
- print(1)
- Больше-меньше
- a = int(input())
- b = int(input())
- if(a<b):
- print('<')
- elif (a>b):
- print('>')
- else:
- print('=')
- Орешки
- # a = int(input())
- # b = int(input())
- # c = int(input())
- a, b, c = map(int, input().split())
- if (a*b)> c:
- print('YES')
- elif (a*b)==c:
- print('YES')
- else:
- print('NO')
- Эния
- n, a, b = map(int, input().split())
- print(n*a*b*2)
- Гулливер
- a, b = map(int, input().split())
- print(a*a*b)
- Два бандита
- h, l = map(int, input().split())
- lol = h + l - 1
- print(lol-h, lol-l, sep = ' ')
- Зарплата
- a = input().split()
- print(max(int(a[0]),int(a[1]),int(a[2])) - min(int(a[0]),int(a[1]),int(a[2])))
- Игра
- a = int(input())
- print(a,9,9 - a, sep='')
- Арифметика
- a,b,c = map(int, input().split())
- if (a*b==c):
- print('YES')
- else:
- print('NO')
Add Comment
Please, Sign In to add comment