Advertisement
dino3vr

Untitled

Dec 11th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.38 KB | None | 0 0
  1. s, a, d, e = int(input('s >>> ')), int(input('a >>> ')), int(input('d >>> ')), int(input('e >>> '))
  2.  
  3. if (s*a*d) > 20: print(f'\ns*a*d={s*a*d}\n')
  4. if (s*a*e) > 20: print(f's*a*e={s*a*e}\n')
  5. if (s*d*e) > 20: print(f's*d*e={s*d*e}\n')
  6. if (a*d*e) > 20: print(f'a*d*e={a*d*e}\n')
  7. if (s*a*d) < 20 or (s*a*e) < 20 or (s*d*e) < 20 or (a*d*e) < 20: print('Остальное меньше 20\n')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement