Excuse the ads! We need some help to keep our site up.
|
#include <stdio.h>
void main(){
int x,y,z;
scanf("%d",&x);
scanf("%d",&y);
z = x * 2;
if(z == 1000){
if(y > z){
printf("Nice!\n");
}else{
printf("Wrong!\n");
}
}
} |