fork download
  1. def foo(x: int) -> int:
  2. return x
  3.  
  4. print(foo(10))
  5. print(foo("TYPED!"))
Success #stdin #stdout 0.02s 9204KB
stdin
Standard input is empty
stdout
10
TYPED!