Timus Problem 1493 Solution

Timus Problem Solution

Timus Problem 1493 Solution

#include <stdio.h>

int main()

{

    int a,b,i,n,sum1,sum2;

        sum1=0,sum2=0;

    for(i=0;i<6;i++){

        scanf("%d",&n);



    sum1+=n;

    }

    sum2=sum1+1;

    if(sum2%2!=1){

        printf("Yes");

    }

    else{

        printf("No");

    }

    return 0;

}

 

0 Comments

You may find interest following article

Complete Guide: Create Laravel Project in Docker Without Local Dependencies

Create Laravel Project Through Docker — No Need to Install PHP, MySQL, or Apache on Your Local Machine In this tutorial, I’ll show you how to create and run a full Laravel project using Docker containers. That means you won’t have to install PHP, MySQL, or Apache locally on your computer. By the end of this guide, you’ll have a fully functional Laravel development...