Advertisement
PedroPauloFO

fli flai

Jun 4th, 2014
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. a = float(raw_input())
  2. b = float(raw_input())
  3. c = float(raw_input())
  4.  
  5. if a % 10 == 0 or b % 10 == 0 or c % 10 == 0:
  6.     print "Tumba"
  7.    
  8. else:
  9.     if a % 2 == 0:
  10.         print "Fli"
  11.    
  12.     if b % 3 == 0:
  13.         print "Flai"
  14.        
  15.     if c % 5 == 0:
  16.         print "Flu"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement