Untitled
Anonymous
plain_text
10/14/2023 11:34 AM
324 B
22
Indexable
//домашка про арбуз
#include <iostream>
using namespace std;
int main()
{
int a;
cin >> a;
if (a % 4 == 0)
{
cout << "yes";
}
else
{
cout << "no";
}
return 0;
}Editor is loading...