fork download
  1. result = 0
  2. for i in range(3): # i sẽ chạy từ 0 đến 2
  3. for j in range(2): # j sẽ chạy từ 0 đến 1
  4. result += i + j # Cộng giá trị i + j vào result
  5. print(result)
  6.  
Success #stdin #stdout 0.01s 7136KB
stdin
Standard input is empty
stdout
9