Advertisement
boris-vlasenko

Пингвинчики

Apr 16th, 2016
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.26 KB | None | 0 0
  1. n = int(input())
  2.  
  3. print("   _~_    "*n)
  4. print("  (o o)   "*n)
  5. print(" /  V  \ "*n)
  6. print("/(  _  )\ "*n)
  7. print("  ^^ ^^   "*n)
  8.  
  9. n = int(input())
  10.  
  11. print("   _~_   "*n)
  12. print("  (o o)  "*n)
  13. print(" /  V  \ "*n)
  14. print("/(  _  )\\"*n)
  15. print("  ^^ ^^  "*n)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement