-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinsta id.cpp
More file actions
28 lines (24 loc) · 785 Bytes
/
Copy pathinsta id.cpp
File metadata and controls
28 lines (24 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby,
C#, OCaml, VB, Perl, Swift, Prolog, Javascript, Pascal, COBOL, HTML, CSS, JS
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <iostream>
using namespace std;
int main() {
int x,y;
cout<<"Enter the number of following you have!!:"<<endl;
cin>>x;
cout<<"Enter the number of followers you have:"<<endl;
cin>>y;
if(y==10*x)
{
cout<<"ACCOUNT IS SPAMED:"<<endl;
}
else
{
cout<<"ACCOUNT IS NOT SPAMED:"<<endl;
}
return 0;
}