
Patrick B. answered 04/06/21
Tutor
4.7
(31)
Math and computer tutor/teacher
#include <iostream>
int main()
{
int n;
cout << "Input the number :>";
cin >> n;
if (n==7) { cout << "Lucky" << endl; }
}