#include <stdio.h> int main() { int x = 30; int y = 20; if ( x == y) { printf("x and y are equal"); } else { printf("x and y are not equal"); } }