以下のコードの実行結果はどうなりますか? ```python a = 10 b = 3 result1 = a / b result2 = a // b print(result1, result2) ```