fork download
  1. a= 1
  2. b=2
  3. def asd(one,two):
  4. print one
  5. print two
  6.  
  7. asd(a,b)
  8.  
  9. """def cheese_and_crackers(cheese_count, boxes_of_crackers):
  10. print "You have %d cheeses!" % cheese_count
  11. cheese_and_crackers(1,2)"""
Success #stdin #stdout 0.02s 6956KB
stdin
Standard input is empty
stdout
1
2