Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def main():
- # leer número de casos
- t = int(input())
- for _ in range(t):
- solve()
- def solve():
- # aquí va tu código
- n = input()
- print(n)
- if __name__ == "__main__":
- main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement