View difference between Paste ID: uFWLMwyh and JLWYH8Y9
SHOW: | | - or go back to the newest paste.
1
#include <iostream>
2
3
int PilzAdam, OtherModders;
4
5
using namespace std;
6
7
int main()
8
{
9
	cout << "How awesome is PilzAdam? \n";
10
11
	cin >> PilzAdam;
12
13
	cout << "How awesome are the Other Modders? \n";
14
15
	cin >> OtherModders;	
16
17
	if (PilzAdam > OtherModders)
18
	{
19
		cout << "PilzAdam is awesome!";
20
	}
21
22-
`	else if
22+
`	else
23
	{
24
		cout << "You are wrong!";
25
	}
26
27
	return 0;
28
}