Submission #2559060


Source Code Expand

#include<iostream>
using namespace std;

int main(){
int a,b,r;

cin>>a>>b;

r = a+b;

if(a%3==0||b%3==0|r%3==0){
cout<<"possible"<<endl;
}
else{
cout<<"impossibe"<<endl;
}

Submission Info

Submission Time
Task A - One Card Poker
User vjudge4
Language C++14 (GCC 5.4.1)
Score 0
Code Size 173 Byte
Status CE

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:16:1: error: expected ‘}’ at end of input
 }
 ^