num = int(input('Enter num: ')) # Запрашиваем число и одновременно преобразовываем str в int
if num > 50: # Логическое условие
print('yes')
else:
print('no')
#include <iostream>
int main()
{
int num;
std::cout << "enter a number: ";
std::cin >> num;
if(num > 50)
std::cout << "yes" << std::endl;
else
std::cout << "no" << std::endl;
std::cin.get();
return 0;
}
num = int(input('Enter num: ')) # Запрашиваем число и одновременно преобразовываем str в int
if num > 50: # Логическое условие
print('yes')
else:
print('no')
#include <iostream>
int main()
{
int num;
std::cout << "enter a number: ";
std::cin >> num;
if(num > 50)
std::cout << "yes" << std::endl;
else
std::cout << "no" << std::endl;
std::cin.get();
return 0;
}