Security - Message Space and Ciphertext Space

  • + 0 comments

    This is my code. I know this code is not optimized.

    n = input() l = tuple(str(n)) for i in l: if int(i)+1 == 10: print(0, end='') else: print(int(i)+1, end='')