fork download
  1. x=int(input())
  2. a=x//10
  3. b=x%10
  4. s=a+b
  5. print(s)
  6.  
Success #stdin #stdout 0.01s 7288KB
stdin
25
stdout
7