def choose_seats(cursor, connection, projection_id):
     Projections.print_projection_seats(projection_id)
     row_and_col = input("Enter the row and the collum separated with \" , \" >")
     row_and_col = (row_and_col.split(","))
     Reservations.reserv_seat(cursor, connection, projection_id, row_and_col[0], row_and_col[1])
     return (row_and_col)