Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #1
- x = input()
- y = input()
- z = input()
- print(x + ' ' + y + ' ' + z)
- answer: Программирование после школы
- #2
- a = int(input())
- b = int(input())
- z = 2 ** 8 * a ** 8 - 2 ** 4 * a ** 4 + 2 ** 2 * a ** 2 - 2 * b + 0.5 * (b ** (0.5)) + 0.5* (a * b ** (b + a))
- print (z)
- answer: 31381124888.5
- #3
- answer: 23!
- a = input()
- b = input()
- print (a + b, end = '!')
- #4
- a = int(input())
- b = int(input())
- c = int(input())
- print('(', end = '')
- print(a, b, sep = ' + ', end = ' - ')
- print(c, ') % 10', sep = '', end = ' = ')
- print((a + b - c) % 10)
- answer: (123 + 456 - 789) % 10 = 0
- #5
- x = int(input())
- print(x - 1, x + 1, sep = '')
- answer: 2325
- #6
- x = int(input())
- y = x // 100000
- print(y)
- answer: 1234
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement