fork download
  1. c=int(input())
  2. a=c//10
  3. b=c%10
  4. sum=a+b
  5. print(sum)
  6. if a==b:
  7. print("рівні цифри")
  8. else:print("не рінві")
  9. if c%2==0:
  10. print("число парне")
  11. else:print("непарне")
  12.  
Success #stdin #stdout 0.01s 7268KB
stdin
66
stdout
12
рівні цифри
число парне