pliz help me in visual stideo 2015
what is this erors
The thread 'TppWorkerThread' (0x1be4) has exited with code 0 (0x0).
The thread 'Win32 Thread' (0x1938) has exited with code 0 (0x0).
The thread 'Win32 Thread' (0x1be8) has exited with code 0 (0x0).
The program '[3424] Peyman1.exe: Native' has exited with code 0 (0x0).
1 2 3 4 5 6 7 8 9 10 11 12 13
#include <iostream>
usingnamespace std;
void main()
{
int a, b, c;
cout << "pliz enter a\n";
cin >> a;
cout << "pliz enter b\n";
cin >> b;
c = a + b;
cout << "c is" << c;
cin.get();
}