fork download
  1. square =lambda x:x*x
  2. print("square of 5 is : ",square(5))# your code goes here
Success #stdin #stdout 0.01s 6976KB
stdin
Standard input is empty
stdout
('square of 5 is : ', 25)