#include <iostream>
#include <thread>
using namespace std;

void sum(float* A, float* B) {}

int main() {
	float a[] = {1, 2, 3};
	float b[] = {1, 2, 3};
	thread t(sum, a, b);
	t.join();
	return 0;
}