#31337: Now IF work for me


oh_my_god (often)


#include <stdio.h>
#include <stdlib.h>
#include <string.h> 
#include <math.h>
int main()
{
    long long int a,b;
    
    char c;
    scanf("%lld %c %lld",&a,&c,&b);
    if(c=='+')
    {
        printf("%lld",a+b);
    }
    else if(c=='-')
    {  
    
        printf("%lld",a-b);

    }
    else if(c=='*')
    {
        printf("%lld",a*b);
    }
    else if(c=='/')
    {
        printf("%lld",a/b);
    }
    return 0;
    
 }