View difference between Paste ID: 4UrwvCaW and cv0BeS0h
SHOW: | | - or go back to the newest paste.
1-
#include "stdafx.h"
1+
#include <stdio.h>
2
#include <iostream>
3
4
int main()
5
{
6-
	int x = 0;
6+
        int x = 0;
7-
	int y = 5;
7+
        int y = 5;
8-
	x++; 
8+
        x++;
9-
	y++;
9+
        y++;
10-
	y+=x;
10+
        y+=x;
11-
	std::cout << y;
11+
        std::cout << y;
12-
	system("pause >nul");
12+
        system("pause >nul");
13-
	return 0;
13+
        return 0;
14
}