Quick actions

cmd+k|ctrl+k

Navigation

Languages

lab4(93)

Snippet info

Language

Cpp

Visibility

public

Author

andrusus.korotkovus

Created

2018-10-25T15:51:17Z

Updated

2018-10-25T15:51:37Z

#include <iostream>
using namespace std;

int main()
{
	int a, b;
	cin >> a >> b;
	if (a>0 && a<32 && b>0 && b<13) {
		cout << "Дата введена верно";
	}
	else {
		cout << "Дата введена неверно";
	}
}
INFO