Advertisement
Nenogzar

Untitled

Oct 8th, 2023
928
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.30 KB | None | 0 0
  1. pin_one = int(input())
  2. pin_two = int(input())
  3. pin_three = int(input())
  4. for num_one in range(2, pin_one+1, 2):
  5.     for number_two in range(2, pin_two+1):
  6.         for num_tree in range(2, pin_three+1, 2):
  7.             if str(number_two) in "2357":
  8.                 print(num_one, number_two, num_tree)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement