Hey this is my first program using C++ any tips to a newbie would be appeciated
#include <iostream>
using namespace std;
int main()
{
int a;
int b;
int sum;
int rem;
cout << "division, type in a number \n";
cin >> a;
cout << "tpye in another number \n";
cin >> b;
rem = a % b;
sum = a / b;
cout << "your number is " << sum << " your rem is " << rem << endl;
return 0;
}